From: Ævar Arnfjörð Bjarmason Date: Mon, 18 Jul 2005 05:40:24 +0000 (+0000) Subject: * Made makeUpdateOptions() DBMS independant X-Git-Tag: 1.5.0beta4~99 X-Git-Url: http://git.heureux-cyclage.org/?a=commitdiff_plain;h=0bb7e5fa8b64003ff968cc3fc39c35de2dcb312b;p=lhc%2Fweb%2Fwiklou.git * Made makeUpdateOptions() DBMS independant --- diff --git a/includes/Database.php b/includes/Database.php index ea61683f38..ead81b01c6 100644 --- a/includes/Database.php +++ b/includes/Database.php @@ -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);