From 0d100487e48d2b67a674a214c54954916d8dc23c Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 28 Oct 2004 02:01:03 +0000 Subject: [PATCH] Fix constructor --- includes/SearchMySQL3.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SearchMySQL3.php b/includes/SearchMySQL3.php index abe597e145..02a9332f8c 100644 --- a/includes/SearchMySQL3.php +++ b/includes/SearchMySQL3.php @@ -26,7 +26,7 @@ require_once( 'SearchEngine.php' ); class SearchMySQL3 extends SearchEngine { - function SearchEngineMySQL3( $db ) { + function SearchMySQL3( &$db ) { $this->db =& $db; } -- 2.20.1