r93053 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r93052‎ | r93053 | r93054 >
Date:16:08, 25 July 2011
Author:yaron
Status:deferred
Tags:
Comment:
Slight formatting fix
Modified paths:
  • /trunk/extensions/SemanticForms/includes/SF_FormInputs.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticForms/includes/SF_FormInputs.php
@@ -1174,7 +1174,7 @@
11751175 $selectText = Xml::tags( 'select', $selectAttrs, $optionsText );
11761176
11771177 $divClass = "ui-widget";
1178 - if ($is_mandatory) { $divClass .= " mandatory"; }
 1178+ if ( $is_mandatory ) { $divClass .= " mandatory"; }
11791179 $text = Xml::tags( 'div', array( 'class' => $divClass ), $selectText );
11801180 return $text;
11811181 }