@@ -58,8 +58,8 @@ |
||
| 58 | 58 | /** |
| 59 | 59 | * Views do not have namespaces, so create shortcuts to common functions. |
| 60 | 60 | * |
| 61 | - * @param string $string |
|
| 62 | 61 | * |
| 62 | + * @param string $route |
|
| 63 | 63 | * @return string |
| 64 | 64 | */ |
| 65 | 65 | function url($route, array $parameters = array()) { |
@@ -179,7 +179,6 @@ discard block |
||
| 179 | 179 | /** |
| 180 | 180 | * Handle a logout request. |
| 181 | 181 | * |
| 182 | - * @param Tree|null $tree The current tree |
|
| 183 | 182 | */ |
| 184 | 183 | public function logoutAction() { |
| 185 | 184 | if (Auth::id()) { |
@@ -393,7 +392,6 @@ discard block |
||
| 393 | 392 | /** |
| 394 | 393 | * Sucessful submission of a registration form. |
| 395 | 394 | * |
| 396 | - * @param Tree $tree |
|
| 397 | 395 | */ |
| 398 | 396 | public function registrationConfirm() { |
| 399 | 397 | $id = Filter::get('id'); |
@@ -406,10 +406,10 @@ |
||
| 406 | 406 | } |
| 407 | 407 | |
| 408 | 408 | /** |
| 409 | - * Respond to a link which was sent to a user to verify their email address. |
|
| 410 | - * |
|
| 411 | - * @param Tree $tree |
|
| 412 | - */ |
|
| 409 | + * Respond to a link which was sent to a user to verify their email address. |
|
| 410 | + * |
|
| 411 | + * @param Tree $tree |
|
| 412 | + */ |
|
| 413 | 413 | public function verifyEmailAction(Tree $tree) { |
| 414 | 414 | $id = Filter::get('id'); |
| 415 | 415 | $code = Filter::get('code'); |
@@ -3,7 +3,7 @@ |
||
| 3 | 3 | </p> |
| 4 | 4 | |
| 5 | 5 | <p> |
| 6 | - <?php echo translate('A new user (%1$s) has requested an account (%2$s) and verified an email address (%3$s).',escape($user->getRealName()),escape($user->getUserName()),escape($user->getEmail())) ?> |
|
| 6 | + <?php echo translate('A new user (%1$s) has requested an account (%2$s) and verified an email address (%3$s).', escape($user->getRealName()), escape($user->getUserName()), escape($user->getEmail())) ?> |
|
| 7 | 7 | </p> |
| 8 | 8 | |
| 9 | 9 | <p> |