From f134f2f134c67a5db9dc170ae370a84b5a97fd8c Mon Sep 17 00:00:00 2001 From: Max Semenik Date: Tue, 23 Nov 2010 14:08:46 +0000 Subject: [PATCH] Fix PHP 5.2 compatibility for r77144 --- includes/db/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/db/Database.php b/includes/db/Database.php index 3f50a9e033..c9a45e1715 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -155,7 +155,7 @@ interface DatabaseType { * @param $fname string: Calling function name * @return Mixed: Database-specific index description class or false if the index does not exist */ - function indexInfo( $table, $index, $fname ); + function indexInfo( $table, $index, $fname = 'Database::indexInfo' ); /** * Get the number of rows affected by the last write query -- 2.20.1