Changeset 75 for trunk/Application
- Timestamp:
- Dec 4, 2016, 1:40:00 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Core.php
r74 r75 15 15 var $ShowPage; 16 16 var $BaseURL; 17 var $UseSession; 17 18 18 19 function __construct() … … 20 21 parent::__construct(); 21 22 $this->Pages = array(); 23 $this->UseSession = true; 22 24 $this->ShowPage = true; 23 25 $this->BaseURL = $_SERVER['SCRIPT_NAME']; … … 30 32 global $Config, $DatabaseRevision, $WithoutSessionStart; 31 33 32 if(!isset($WithoutStartSession) or (isset($WithoutStartSession) and !$WithoutSessionStart)) 33 session_start(); 34 if($this->UseSession) session_start(); 34 35 35 36 $ErrorHandler = new ErrorHandler();
Note:
See TracChangeset
for help on using the changeset viewer.