r101819 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r101818‎ | r101819 | r101820 >
Date:15:13, 3 November 2011
Author:nikerabbit
Status:deferred
Tags:
Comment:
Followup r101538, r93112: fix the fail everywhere
Modified paths:
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_CategoriesInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_CategoryInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_CheckboxInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_CheckboxesInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_ComboBoxInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_DateInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_DateTimeInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_DropdownInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_ListBoxInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_RadioButtonInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_TextAreaInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_TextAreaWithAutocompleteInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_TextWithAutocompleteInput.php (modified) (history)
  • /trunk/extensions/SemanticForms/includes/forminputs/SF_YearInput.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticForms/includes/forminputs/SF_ListBoxInput.php
@@ -106,7 +106,7 @@
107107 $this->mInputName,
108108 $this->mIsMandatory,
109109 $this->mIsDisabled,
110 - $mOtherArgs
 110+ $this->mOtherArgs
111111 );
112112 }
113113 }
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CategoriesInput.php
@@ -130,7 +130,7 @@
131131 $this->mInputName,
132132 $this->mIsMandatory,
133133 $this->mIsDisabled,
134 - $mOtherArgs
 134+ $this->mOtherArgs
135135 );
136136 }
137137 }
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CheckboxInput.php
@@ -84,7 +84,7 @@
8585 $this->mInputName,
8686 $this->mIsMandatory,
8787 $this->mIsDisabled,
88 - $mOtherArgs
 88+ $this->mOtherArgs
8989 );
9090 }
9191 }
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_RadioButtonInput.php
@@ -133,7 +133,7 @@
134134 $this->mInputName,
135135 $this->mIsMandatory,
136136 $this->mIsDisabled,
137 - $mOtherArgs
 137+ $this->mOtherArgs
138138 );
139139 }
140140 }
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_TextAreaWithAutocompleteInput.php
@@ -164,7 +164,7 @@
165165 $this->mInputName,
166166 $this->mIsMandatory,
167167 $this->mIsDisabled,
168 - $mOtherArgs
 168+ $this->mOtherArgs
169169 );
170170 }
171171 }
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_DateTimeInput.php
@@ -141,7 +141,7 @@
142142 $this->mInputName,
143143 $this->mIsMandatory,
144144 $this->mIsDisabled,
145 - $mOtherArgs
 145+ $this->mOtherArgs
146146 );
147147 }
148148 }
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_DropdownInput.php
@@ -108,7 +108,7 @@
109109 $this->mInputName,
110110 $this->mIsMandatory,
111111 $this->mIsDisabled,
112 - $mOtherArgs
 112+ $this->mOtherArgs
113113 );
114114 }
115115 }
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_YearInput.php
@@ -76,7 +76,7 @@
7777 $this->mInputName,
7878 $this->mIsMandatory,
7979 $this->mIsDisabled,
80 - $mOtherArgs
 80+ $this->mOtherArgs
8181 );
8282 }
8383 }
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_TextWithAutocompleteInput.php
@@ -236,7 +236,7 @@
237237 $this->mInputName,
238238 $this->mIsMandatory,
239239 $this->mIsDisabled,
240 - $mOtherArgs
 240+ $this->mOtherArgs
241241 );
242242 }
243243 }
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_ComboBoxInput.php
@@ -116,7 +116,7 @@
117117 $this->mInputName,
118118 $this->mIsMandatory,
119119 $this->mIsDisabled,
120 - $mOtherArgs
 120+ $this->mOtherArgs
121121 );
122122 }
123123 }
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CategoryInput.php
@@ -149,7 +149,7 @@
150150 $this->mInputName,
151151 $this->mIsMandatory,
152152 $this->mIsDisabled,
153 - $mOtherArgs
 153+ $this->mOtherArgs
154154 );
155155 }
156156 }
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_DateInput.php
@@ -121,7 +121,7 @@
122122 $this->mInputName,
123123 $this->mIsMandatory,
124124 $this->mIsDisabled,
125 - $mOtherArgs
 125+ $this->mOtherArgs
126126 );
127127 }
128128 }
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_TextAreaInput.php
@@ -171,7 +171,7 @@
172172 */
173173 public function getHtmlText() {
174174 return self::getHTML(
175 - $this->mCurrentValue, $this->mInputName, $this->mIsMandatory, $this->mIsDisabled, $mOtherArgs
 175+ $this->mCurrentValue, $this->mInputName, $this->mIsMandatory, $this->mIsDisabled, $this->mOtherArgs
176176 );
177177 }
178178
Index: trunk/extensions/SemanticForms/includes/forminputs/SF_CheckboxesInput.php
@@ -120,7 +120,7 @@
121121 $this->mInputName,
122122 $this->mIsMandatory,
123123 $this->mIsDisabled,
124 - $mOtherArgs
 124+ $this->mOtherArgs
125125 );
126126 }
127127 }

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r93112split SF_FormInputs.php, introduce some new methodsfoxtrott20:57, 25 July 2011
r101538fix failjeroendedauw21:53, 1 November 2011