]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Refs #2450: Documentation for account/ files added.
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Mon, 6 Sep 2010 14:41:42 +0000 (14:41 +0000)
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Mon, 6 Sep 2010 14:41:42 +0000 (14:41 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@6911 36083f99-b078-4883-b0ff-0f9b5a30f544

account/forgotten_password.php
account/register.php

index fea2bc03ff8e1e7d4f465541fa2979cd31d65549..1741a06b07ec2d47f6d2f19b63151333644bf559 100644 (file)
@@ -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 {
index 1a61097626b6d530cc85a623fcf87aa75223488b..66a4cfe41399c4742fda53641b4c5445c757e2b0 100644 (file)
@@ -1,12 +1,17 @@
 <?php
-
 /**
- * Elgg registration page
+ * Assembles and outputs the registration page.
+ *
+ * Since 1.8 registration can be disabled via administration.  If this is
+ * the case, calls to this page will forward to the network front page.
+ *
+ * If the user is logged in, this page will forward to the network
+ * front page.
+ *
+ * @see views/default/account/forms/register.php
  *
  * @package Elgg
  * @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
  */
 
 /**