Changeset 2520
- Timestamp:
- 28/08/08 12:44:41 (4 hours ago)
- Files:
-
- branches/php4/classes/dbmysql.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/php4/classes/dbmysql.php
r2419 r2520 80 80 { 81 81 $ret = mysql_select_db( $db_to_select, $this->database ); 82 if ( !$ret)83 { 84 print( "<H1>MySQL Error</H1><br />" . mysql_errno( $this->database ) . ": " . mysql_error( $this->database ) ."<br /><hr />Please inform the system administrator.");82 if (!$ret) 83 { 84 print( "<H1>MySQL Error</H1><br />" . mysql_errno( $this->database ) . ": " . mysql_error( $this->database ) ); 85 85 exit; 86 86 }
