Changeset 341 for dev/install/install_step4.php
- Timestamp:
- 10/15/08 22:31:54 (14 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/install/install_step4.php
r267 r341 72 72 { 73 73 echo 'done<br/>'; 74 if $_SESSION['sql']['engine'] == "InnoDB"{ 75 echo 'Altering table '. $table .' into InnoDB...'; 76 $id = mysql_query('ALTER TABLE '.$table.' ENGINE=InnoDB;'); 77 if ($id) 78 { 79 echo 'done<br/>'; 80 } 81 else 82 { 83 echo 'error: '.mysql_error().'<br/>'; 84 } 85 } 74 86 } 75 87 else