Index: trunk/phase3/includes/Status.php |
— | — | @@ -294,11 +294,11 @@ |
295 | 295 | } |
296 | 296 | return $result; |
297 | 297 | } |
298 | | - |
| 298 | + |
299 | 299 | /** |
300 | 300 | * Returns a list of status messages of the given type, with message and |
301 | 301 | * params left untouched, like a sane version of getStatusArray |
302 | | - * |
| 302 | + * |
303 | 303 | * @param $type String |
304 | 304 | * |
305 | 305 | * @return Array |
— | — | @@ -308,7 +308,7 @@ |
309 | 309 | foreach ( $this->errors as $error ) { |
310 | 310 | if ( $error['type'] === $type ) { |
311 | 311 | $result[] = $error; |
312 | | - } |
| 312 | + } |
313 | 313 | } |
314 | 314 | return $result; |
315 | 315 | } |
— | — | @@ -329,7 +329,7 @@ |
330 | 330 | } |
331 | 331 | |
332 | 332 | /** |
333 | | - * If the specified source message exists, replace it with the specified |
| 333 | + * If the specified source message exists, replace it with the specified |
334 | 334 | * destination message, but keep the same parameters as in the original error. |
335 | 335 | * |
336 | 336 | * Return true if the replacement was done, false otherwise. |