Changeset 157 for trunk/includes
- Timestamp:
- Mar 12, 2009, 3:33:20 PM (16 years ago)
- Location:
- trunk/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/config.sample.php
r147 r157 16 16 'BaseURL' => 'http://localhost/', 17 17 'AdminEmail' => 'admin@localhost', 18 'ShowSQLQuery' => false, 18 19 'ShowSQLError' => false, 19 20 'ShowPHPError' => false, -
trunk/includes/databaseconection.php
r58 r157 23 23 global $Config; 24 24 25 if($Config['Web']['ShowSQLQuery'] == true) 26 echo('<div style="border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: silver; padding-bottom: 2px; padding-top: 2px; font-size: 12px; font-family: Arial;">'.$Command.'</div>'); 25 27 $ReturnCommand = mysql_query($Command, $this->id_connection); 26 28 if((mysql_error() != '') and ($Config['Web']['ShowSQLError'] == true))
Note:
See TracChangeset
for help on using the changeset viewer.