From cccbb916b02f09d18511766421174b77cfb899ac Mon Sep 17 00:00:00 2001 From: Platonides Date: Sun, 16 Oct 2011 19:53:30 +0000 Subject: [PATCH] Parse error (missing ';') in r99938. --- includes/objectcache/DBABagOStuff.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1