Index: branches/unlabeled/unlabeled-1.9.2/core/install.php =================================================================== diff -u -N -r8607 -r8702 --- branches/unlabeled/unlabeled-1.9.2/core/install.php (.../install.php) (revision 8607) +++ branches/unlabeled/unlabeled-1.9.2/core/install.php (.../install.php) (revision 8702) @@ -759,7 +759,7 @@ // add prefix to all tables if (strlen($table_prefix) > 0) { - $replacements = Array ('CREATE TABLE ', 'INSERT INTO ', 'UPDATE ', 'ALTER TABLE '); + $replacements = Array ('CREATE TABLE ', 'INSERT INTO ', 'UPDATE ', 'ALTER TABLE ', 'DELETE FROM '); foreach ($replacements as $replacement) { $sqls = str_replace($replacement, $replacement.$table_prefix, $sqls); }