From 0bb7e5fa8b64003ff968cc3fc39c35de2dcb312b Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Mon, 18 Jul 2005 05:40:24 +0000 Subject: [PATCH] * Made makeUpdateOptions() DBMS independant --- includes/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.20.1