Changeset 495 for trunk/includes/config.sample.php
- Timestamp:
- Jan 27, 2013, 7:42:05 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/config.sample.php
r477 r495 1 1 <?php 2 3 $IsDeveloper = in_array($_SERVER['REMOTE_ADDR'], array('127.0.0.1')); 2 4 3 5 $Config = array( … … 21 23 'Authors' => 'autor', 22 24 'ShowSQLQuery' => false, 23 'ShowSQLError' => false,24 'ShowPHPError' => false,25 'ShowRuntimeInfo' => false,25 'ShowSQLError' => $IsDeveloper, 26 'ShowPHPError' => $IsDeveloper, 27 'ShowRuntimeInfo' => $IsDeveloper, 26 28 'ItemsPerPage' => 40, 27 29 'TempFolder' => '../tmp/',
Note:
See TracChangeset
for help on using the changeset viewer.