Index: trunk/phase3/includes/SiteConfiguration.php |
— | — | @@ -194,10 +194,9 @@ |
195 | 195 | |
196 | 196 | /** |
197 | 197 | * Retrieves a configuration setting for a given wiki, forced to a boolean. |
198 | | - * @param $settingName String ID of the setting name to retrieve |
| 198 | + * @param $setting String ID of the setting name to retrieve |
199 | 199 | * @param $wiki String Wiki ID of the wiki in question. |
200 | 200 | * @param $suffix String The suffix of the wiki in question. |
201 | | - * @param $params Array List of parameters. $.'key' is replaced by $value in all returned data. |
202 | 201 | * @param $wikiTags Array The tags assigned to the wiki. |
203 | 202 | * @return bool The value of the setting requested. |
204 | 203 | */ |
— | — | @@ -216,7 +215,7 @@ |
217 | 216 | |
218 | 217 | /** |
219 | 218 | * Retrieves the value of a given setting, and places it in a variable passed by reference. |
220 | | - * @param $settingName String ID of the setting name to retrieve |
| 219 | + * @param $setting String ID of the setting name to retrieve |
221 | 220 | * @param $wiki String Wiki ID of the wiki in question. |
222 | 221 | * @param $suffix String The suffix of the wiki in question. |
223 | 222 | * @param $var Reference The variable to insert the value into. |
— | — | @@ -232,7 +231,7 @@ |
233 | 232 | |
234 | 233 | /** |
235 | 234 | * Retrieves the value of a given setting, and places it in its corresponding global variable. |
236 | | - * @param $settingName String ID of the setting name to retrieve |
| 235 | + * @param $setting String ID of the setting name to retrieve |
237 | 236 | * @param $wiki String Wiki ID of the wiki in question. |
238 | 237 | * @param $suffix String The suffix of the wiki in question. |
239 | 238 | * @param $params Array List of parameters. $.'key' is replaced by $value in all returned data. |