* Made makeUpdateOptions() DBMS independant
[lhc/web/wiklou.git] / includes / Database.php
index ea61683..ead81b0 100644 (file)
@@ -939,7 +939,7 @@ class Database {
        function makeUpdateOptions( $options ) {
                $opts = array();
                if ( in_array( 'LOW_PRIORITY', $options ) )
-                       $opts[] = 'LOW_PRIORITY';
+                       $opts[] = $this->lowPriorityOption();
                if ( in_array( 'IGNORE', $options ) ) 
                        $opts[] = 'IGNORE';
                return implode(' ', $opts);