From: Brion Vibber Date: Wed, 7 Jun 2006 07:50:43 +0000 (+0000) Subject: Unbreak the wiki when the base BagOStuff class is used for faux cache objects (as... X-Git-Tag: 1.31.0-rc.0~56852 X-Git-Url: http://git.cyclocoop.org/data/%24oldEdit?a=commitdiff_plain;h=7cd8a7da44e668bb0cd562a03584720d902c82c1;p=lhc%2Fweb%2Fwiklou.git Unbreak the wiki when the base BagOStuff class is used for faux cache objects (as in parser tests) This was broken in r14631 by declaring the class abstract, and therefore non-instantiable. --- diff --git a/includes/BagOStuff.php b/includes/BagOStuff.php index c48aef9ef7..7585088edd 100644 --- a/includes/BagOStuff.php +++ b/includes/BagOStuff.php @@ -33,9 +33,8 @@ * $bag = new MysqlBagOStuff($tablename); # connect to db first * * @package MediaWiki - * @abstract */ -abstract class BagOStuff { +class BagOStuff { var $debugmode; function BagOStuff() {