aboutsummaryrefslogtreecommitdiff
path: root/account/forgotten_password.php
diff options
context:
space:
mode:
Diffstat (limited to 'account/forgotten_password.php')
-rw-r--r--account/forgotten_password.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/account/forgotten_password.php b/account/forgotten_password.php
index fea2bc03f..1741a06b0 100644
--- a/account/forgotten_password.php
+++ b/account/forgotten_password.php
@@ -1,17 +1,17 @@
<?php
/**
- * Forgotten password function.
+ * Assembles and outputs the forgotten password page.
+ *
+ * @see views/default/account/forums/forgotten_password.php
*
* @package Elgg
* @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
*/
require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
if (!isloggedin()) {
- $area1 = elgg_view_title(elgg_echo("user:password:lost"));
+ $area1 = elgg_view_title(elgg_echo("user:password:lost"));
$area2 = elgg_view("account/forms/forgotten_password");
page_draw(elgg_echo('user:password:lost'), elgg_view_layout("one_column_with_sidebar", $area1 . $area2));
} else {