Helper function for searching indexed submit POST vars
[fa-stable.git] / admin / db / maintenance_db.inc
index 0a710e34a409e032db4153bbaab5dc78fb12fba9..8ed6b7dffd57dfe6e3bef9b9da68db4984cd7cb6 100644 (file)
@@ -136,6 +136,12 @@ function db_import($filename, $connection)
                        {
                                $data_queries[] = substr($line, 0, strlen($line) - 1);
 
+                       // this line does not, too
+                       }
+                       elseif (strtolower(substr($line,0,6)) == "update")
+                       {
+                               $data_queries[] = substr($line, 0, strlen($line) - 1);
+
                        // this line does not, too
                        }
                        elseif (strtolower(substr($line, 0, 20)) == "drop table if exists")
@@ -160,8 +166,10 @@ function db_import($filename, $connection)
                {
 
                        // create sql query ending in this line
-                       if (strtolower(substr($line, 0, 1)) == ")")
+                       if (strtolower(substr($line, 0, 1)) == ")") {
                                $table = false;
+                               $line = substr($line,0,strlen($line)-1);
+                 }
                        $table_queries[count($table_queries) - 1] .= $line . "\n";
                }
        }