class2.php
loading e107 handlers inside efiction script
in header.php:
if (!defined('e107_INIT'))
{
require_once(__DIR__.'/../../class2.php');
}
this reset all sessions, so they need to be replaced as the first
in includes/button.php
in includes/plain.button.php
if (!defined('e107_INIT'))
{
require_once(__DIR__.'/../../../class2.php');
}
Last updated