From: Raimond Spekking Date: Tue, 10 Aug 2010 08:51:11 +0000 (+0000) Subject: Add ID to minor/watch labels to allow separate styling of these lebels. X-Git-Tag: 1.31.0-rc.0~35569 X-Git-Url: http://git.cyclocoop.org/clavettes/images/siteon3.jpg?a=commitdiff_plain;h=7b848e08f519dd1508ef31408a8bbdcb1aaf26fb;p=lhc%2Fweb%2Fwiklou.git Add ID to minor/watch labels to allow separate styling of these lebels. --- diff --git a/includes/EditPage.php b/includes/EditPage.php index 224b151b99..a362dd78e6 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -2279,7 +2279,7 @@ INPUTS ); $checkboxes['minor'] = Xml::check( 'wpMinoredit', $checked['minor'], $attribs ) . - " "; + " "; } $watchLabel = wfMsgExt( 'watchthis', array( 'parseinline' ) ); @@ -2292,7 +2292,7 @@ INPUTS ); $checkboxes['watch'] = Xml::check( 'wpWatchthis', $checked['watch'], $attribs ) . - " "; + " "; } wfRunHooks( 'EditPageBeforeEditChecks', array( &$this, &$checkboxes, &$tabindex ) ); return $checkboxes;