r82525 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r82524‎ | r82525 | r82526 >
Date:18:40, 20 February 2011
Author:yaron
Status:deferred
Tags:
Comment:
Added a missing 'description' value
Modified paths:
  • /trunk/extensions/SemanticForms/includes/SF_FormInputs.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticForms/includes/SF_FormInputs.php
@@ -121,7 +121,7 @@
122122
123123 public static function getParameters() {
124124 $params = parent::getParameters();
125 - $params[] = array( 'name' => 'delimiter', 'type' => 'string' );
 125+ $params[] = array( 'name' => 'delimiter', 'type' => 'string', 'description' => wfMsg( 'sf_forminputs_delimiter' ) );
126126 return $params;
127127 }
128128 }