MediaWikiBagOStuff -> SqlBagOStuff in comment, both are the same since r55079
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sat, 16 Jan 2010 14:44:29 +0000 (14:44 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sat, 16 Jan 2010 14:44:29 +0000 (14:44 +0000)
includes/BagOStuff.php

index c4dd4aa..48f0e4f 100644 (file)
@@ -32,7 +32,7 @@
  * backends for local hash array and SQL table included:
  * <code>
  *   $bag = new HashBagOStuff();
- *   $bag = new MediaWikiBagOStuff($tablename); # connect to db first
+ *   $bag = new SqlBagOStuff(); # connect to db first
  * </code>
  *
  * @ingroup Cache