From 7cd8a7da44e668bb0cd562a03584720d902c82c1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 7 Jun 2006 07:50:43 +0000 Subject: [PATCH] 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. --- includes/BagOStuff.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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() { -- 2.20.1