From: Chad Horohoe Date: Thu, 22 Jul 2010 13:04:37 +0000 (+0000) Subject: Fix r69229. This should not be abstract, return dummy in parent X-Git-Tag: 1.31.0-rc.0~36012 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=bfc9fd331e6c94090e6ae1c620e2748b0bd1c27f;p=lhc%2Fweb%2Fwiklou.git Fix r69229. This should not be abstract, return dummy in parent --- diff --git a/includes/db/Database.php b/includes/db/Database.php index fef3e32bc1..19a6b39884 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -2354,12 +2354,14 @@ abstract class DatabaseBase { } /** - * Get search engine class. Subclasses that don't support a search engine - * should return 'SearchEngineDummy'. + * Get search engine class. All subclasses of this need to implement this + * if they wish to use searching. * * @return String */ - public abstract function getSearchEngine(); + public function getSearchEngine() { + return 'SearchEngineDummy'; + } /** * Allow or deny "big selects" for this session only. This is done by setting