From 9566baf11227f4644366254700be380ca88ef3da Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Tue, 19 Apr 2011 10:40:32 +0000 Subject: [PATCH] Followup r86367, don't make constructor protected just yet, few underlying callers still about Need a way to do a blank title without using the constructor (Title::newBlank() maybe?) * (bug 28608) Fatal error: Call to protected Title::__construct() --- includes/Title.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Title.php b/includes/Title.php index 11c2d5bc5f..5bf8998041 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -79,7 +79,7 @@ class Title { /** * Constructor */ - protected function __construct() { } + /*protected*/ function __construct() { } /** * Create a new Title from a prefixed DB key -- 2.20.1