Changeset 1098 for trunk/config.php
- Timestamp:
- 04/06/05 23:14:50 (4 years ago)
- Files:
-
- trunk/config.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/config.php
r1088 r1098 12 12 require_once($root."class/m_err.php"); 13 13 14 global $dbalready;15 14 global $er,$fe,$username,$db; 16 15 17 if (!$dbalready) { 16 require_once($root."class/db_mysql.php"); 18 17 19 require_once($root."class/db_mysql.php"); 18 if (!class_exists("DB_system")) { 19 20 20 // Classe héritée de la classe db de la phplib. 21 21 class DB_system extends DB_Sql { … … 30 30 } 31 31 $db= new DB_system(); 32 $dbalready=1;33 32 } 34 33
