From: Platonides Date: Sun, 16 Oct 2011 19:53:30 +0000 (+0000) Subject: Parse error (missing ';') in r99938. X-Git-Tag: 1.31.0-rc.0~27063 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=cccbb916b02f09d18511766421174b77cfb899ac;p=lhc%2Fweb%2Fwiklou.git Parse error (missing ';') in r99938. --- diff --git a/includes/objectcache/DBABagOStuff.php b/includes/objectcache/DBABagOStuff.php index 1ecc0deca8..f5f7a7c8dc 100644 --- a/includes/objectcache/DBABagOStuff.php +++ b/includes/objectcache/DBABagOStuff.php @@ -187,7 +187,7 @@ class DBABagOStuff extends BagOStuff { $key = dba_nextkey( $reader ); while ( $key ) { $result[] = $key; - $key = dba_nextkey( $reader ) + $key = dba_nextkey( $reader ); } return $result;