1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Disable redundant code

This commit is contained in:
e107steved
2009-09-29 21:25:10 +00:00
parent ce4b8bd684
commit 0a96f4ca7b

View File

@@ -9,9 +9,9 @@
* Installation file * Installation file
* *
* $Source: /cvs_backup/e107_0.8/install_.php,v $ * $Source: /cvs_backup/e107_0.8/install_.php,v $
* $Revision: 1.42 $ * $Revision: 1.43 $
* $Date: 2009-09-19 15:27:26 $ * $Date: 2009-09-29 21:25:01 $
* $Author: secretr $ * $Author: e107steved $
* *
*/ */
@@ -1219,11 +1219,10 @@ class e_install
foreach ($result[0] as $sql_table) foreach ($result[0] as $sql_table)
{ {
//@TODO is this still in use? // preg_match("/CREATE TABLE\s(.*?)\s\(/si", $sql_table, $match);
preg_match("/CREATE TABLE\s(.*?)\s\(/si", $sql_table, $match); // $tablename = $match[1];
$tablename = $match[1];
preg_match_all("/create(.*?)myisam;/si", $sql_data, $result ); // preg_match_all("/create(.*?)myisam;/si", $sql_data, $result );
$sql_table = preg_replace("/create table\s/si", "CREATE TABLE {$this->previous_steps['mysql']['prefix']}", $sql_table); $sql_table = preg_replace("/create table\s/si", "CREATE TABLE {$this->previous_steps['mysql']['prefix']}", $sql_table);
if (!$this->dbqry($sql_table, $link)) if (!$this->dbqry($sql_table, $link))
{ {