Unbreak the wiki when the base BagOStuff class is used for faux cache objects (as...
authorBrion Vibber <brion@users.mediawiki.org>
Wed, 7 Jun 2006 07:50:43 +0000 (07:50 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Wed, 7 Jun 2006 07:50:43 +0000 (07:50 +0000)
This was broken in r14631 by declaring the class abstract, and therefore non-instantiable.

includes/BagOStuff.php

index c48aef9..7585088 100644 (file)
@@ -33,9 +33,8 @@
  * $bag = new MysqlBagOStuff($tablename); # connect to db first
  *
  * @package MediaWiki
- * @abstract
  */
-abstract class BagOStuff {
+class BagOStuff {
        var $debugmode;
 
        function BagOStuff() {