Dump.php
[Pman.Admin] / Dump.php
index f90fa24..788c357 100644 (file)
--- a/Dump.php
+++ b/Dump.php
@@ -424,7 +424,7 @@ class Pman_Admin_Dump extends Pman {
         // for auto_inc column we need to use a 'set argument'...
         $items = $do->table();
         //print_R($items);
-        $quoteIdentifiers  = true; //!empty($_DB_DATAOBJECT['CONFIG']['quote_identifiers']);
+        
         // for
         $leftq     = '';
         $rightq    = '';
@@ -439,7 +439,7 @@ class Pman_Admin_Dump extends Pman {
                 $rightq .= ', ';
             }
             
-            $leftq .= ($quoteIdentifiers ? ($DB->quoteIdentifier($k) . ' ')  : "$k ");
+            $leftq .= '`' . $k . '`';