Changeset 17 for trunk/install/install2.php
- Timestamp:
- Feb 20, 2010, 4:54:34 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/install/install2.php
r2 r17 147 147 function split_sql($sql) { 148 148 $sql = trim($sql); 149 $sql = ereg_replace("\n#[^\n]*\n", "\n", $sql);149 $sql = preg_replace('/\n#[^\n]*\n/', "\n", $sql); 150 150 151 151 $buffer = array(); … … 417 417 $handle=opendir('../client/temi'); 418 418 while ($file = readdir($handle)) { 419 if ( (! ereg("[.]",$file)) ) {419 if ( (!preg_match('/[.]/',$file)) ) { 420 420 $themelist .= "$file "; 421 421 }
Note:
See TracChangeset
for help on using the changeset viewer.