Index: trunk/core/kernel/application.php =================================================================== diff -u -N -r8067 -r8104 --- trunk/core/kernel/application.php (.../application.php) (revision 8067) +++ trunk/core/kernel/application.php (.../application.php) (revision 8104) @@ -324,7 +324,6 @@ $this->registerModuleConstants(); return false; } - $modules_helper =& $this->recallObject('ModulesHelper'); $sql = 'SELECT * FROM '.TABLE_PREFIX.'Modules @@ -1587,7 +1586,6 @@ } ob_end_flush(); - // session expiration is called from session initialization, // that's why $this->Session may be not defined here $session =& $this->Application->recallObject('Session'); @@ -1731,7 +1729,6 @@ if (defined('IS_INSTALL') && IS_INSTALL && !$this->TableFound('ConfigurationValues')) { return false; } - $res = $this->Conn->GetRow('SELECT VariableId, VariableValue FROM '.TABLE_PREFIX.'ConfigurationValues WHERE VariableName = '.$this->Conn->qstr($name)); if ($res) { $this->ConfigHash[$name] = $res['VariableValue']; @@ -2249,6 +2246,7 @@ function LoggedIn() { return $this->Session->LoggedIn(); + } /**