From 1d808684eb88207384b7c5849d55e4419746f418 Mon Sep 17 00:00:00 2001 From: Ariel Glenn Date: Fri, 28 Jan 2011 17:18:35 +0000 Subject: [PATCH] call parent constructor so that include path and other things work right --- maintenance/showStats.php | 1 + 1 file changed, 1 insertion(+) diff --git a/maintenance/showStats.php b/maintenance/showStats.php index b5e8525e95..f695c440c1 100644 --- a/maintenance/showStats.php +++ b/maintenance/showStats.php @@ -32,6 +32,7 @@ require_once( dirname( __FILE__ ) . '/Maintenance.php' ); class ShowStats extends Maintenance { public function __construct() { + parent::__construct(); $this->mDescription = "Show the cached statistics"; } public function execute() { -- 2.20.1