From 86b50cafed9e306b539d5c007a7c2df62af67248 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Tue, 20 Dec 2011 12:36:34 +0000 Subject: [PATCH] Fix for r104684 Using "$result['sectionanchor'] == ''; rather than "$result['sectionanchor'] = '';"... --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index f821af3e16..eeabe0328b 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -1130,7 +1130,7 @@ class EditPage { } $text = $this->textbox1; - $result['sectionanchor'] == ''; + $result['sectionanchor'] = ''; if ( $this->section == 'new' ) { if ( $this->sectiontitle != '' ) { // Insert the section title above the content. -- 2.20.1