From: Jack Phoenix Date: Sat, 19 Feb 2011 02:09:53 +0000 (+0000) Subject: get rid of unnecessary double quotes X-Git-Tag: 1.31.0-rc.0~31906 X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_add%27%29%20%7D%7D?a=commitdiff_plain;h=41a46e659f1cb87d7ccd1be97c757585d5ce2420;p=lhc%2Fweb%2Fwiklou.git get rid of unnecessary double quotes --- diff --git a/includes/specials/SpecialNewpages.php b/includes/specials/SpecialNewpages.php index 52c281ecdb..e2541e9920 100644 --- a/includes/specials/SpecialNewpages.php +++ b/includes/specials/SpecialNewpages.php @@ -222,42 +222,42 @@ class SpecialNewpages extends IncludableSpecialPage { Html::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) . Xml::fieldset( wfMsg( 'newpages' ) ) . Xml::openElement( 'table', array( 'id' => 'mw-newpages-table' ) ) . - " - " . + ' + ' . Xml::label( wfMsg( 'namespace' ), 'namespace' ) . - " - " . + ' + ' . Xml::namespaceSelector( $namespace, 'all' ) . - " - " . ( $tagFilter ? ( - " - " . + ' + ' . ( $tagFilter ? ( + ' + ' . $tagFilterLabel . - " - " . + ' + ' . $tagFilterSelector . - " - " ) : '' ) . + ' + ' ) : '' ) . ( $wgEnableNewpagesUserFilter ? - " - " . + ' + ' . Xml::label( wfMsg( 'newpages-username' ), 'mw-np-username' ) . - " - " . + ' + ' . Xml::input( 'username', 30, $userText, array( 'id' => 'mw-np-username' ) ) . - " - " : '' ) . - " - " . + ' + ' : '' ) . + ' + ' . Xml::submitButton( wfMsg( 'allpagessubmit' ) ) . - " - " . - " + ' + ' . + ' - " . + ' . $this->filterLinks() . - " - " . + ' + ' . Xml::closeElement( 'table' ) . Xml::closeElement( 'fieldset' ) . $hidden .