- Code: Select all
//Session timeout expressed in minutes
private static $session_timeout = 15;
Get operation generat is:
- Code: Select all
final public static function getSession_timeout()
{
return $this->session_timeout;
}
Instead of the correct form:
- Code: Select all
final public static function getSession_timeout()
{
return self::$session_timeout;
}
Best regards
Edit: I forgot to mark this problem as solved, sorry