From: Greg Sabino Mullane Date: Tue, 24 Jun 2008 20:58:10 +0000 (+0000) Subject: Add some quick no-ops for the new lock() and unlock() funcs. X-Git-Tag: 1.31.0-rc.0~46896 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=9532aa9eaa58113a0e037967ba213fca7272575b;p=lhc%2Fweb%2Fwiklou.git Add some quick no-ops for the new lock() and unlock() funcs. --- diff --git a/includes/db/DatabasePostgres.php b/includes/db/DatabasePostgres.php index 8f8488b9ae..a0d3d6962e 100644 --- a/includes/db/DatabasePostgres.php +++ b/includes/db/DatabasePostgres.php @@ -1327,4 +1327,13 @@ END; return implode( ' || ', $stringList ); } + /* These are not used yet, but we know we don't want the default version */ + + public function lock( $lockName, $method ) { + return true; + } + public function unlock( $lockName, $method ) { + return true; + } + } // end DatabasePostgres class