Changeset 74
- Timestamp:
- Dec 4, 2016, 1:35:30 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/Core.php
r69 r74 28 28 function RunCommon() 29 29 { 30 global $Config, $DatabaseRevision ;30 global $Config, $DatabaseRevision, $WithoutSessionStart; 31 31 32 session_start(); 32 if(!isset($WithoutStartSession) or (isset($WithoutStartSession) and !$WithoutSessionStart)) 33 session_start(); 33 34 34 35 $ErrorHandler = new ErrorHandler(); -
trunk/add.php
r71 r74 1 1 <?php 2 2 3 $WithoutSessionStart = true; 3 4 include_once('Application/Core.php'); 4 5
Note:
See TracChangeset
for help on using the changeset viewer.