r109381 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r109380‎ | r109381 | r109382 >
Date:16:03, 18 January 2012
Author:yaron
Status:ok
Tags:
Comment:
Fix for r109076 - literal '\t' should have been "\t"
Modified paths:
  • /trunk/extensions/SemanticForms/includes/SF_ParserFunctions.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticForms/includes/SF_ParserFunctions.php
@@ -388,7 +388,7 @@
389389 $key = ( isset( $subcomponents[0] ) ) ? $subcomponents[0] : '';
390390 $val = ( isset( $subcomponents[1] ) ) ? $subcomponents[1] : '';
391391 if ( ! empty( $key ) ) {
392 - $str .= '\t\t\t' . Html::hidden( $key, $val ) . "\n";
 392+ $str .= "\t\t\t" . Html::hidden( $key, $val ) . "\n";
393393 }
394394 }
395395 $button_str = ( $inButtonStr != '' ) ? $inButtonStr : wfMsg( 'sf_formstart_createoredit' );

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r109076Overhaul of HTML: replaced most calls to methods in Xml class with calls to H...yaron23:12, 16 January 2012

Status & tagging log