]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Refs #2450: Updated docs for account/*
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 15 Sep 2010 19:29:09 +0000 (19:29 +0000)
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 15 Sep 2010 19:29:09 +0000 (19:29 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@6940 36083f99-b078-4883-b0ff-0f9b5a30f544

account/forgotten_password.php
account/register.php

index 1741a06b07ec2d47f6d2f19b63151333644bf559..827b254c95c80cf394ab871e1599bf2a1de6dd71 100644 (file)
@@ -2,10 +2,8 @@
 /**
  * Assembles and outputs the forgotten password page.
  *
- * @see views/default/account/forums/forgotten_password.php
- *
- * @package Elgg
- * @subpackage Core
+ * @package Elgg.Core
+ * @subpackage Registration
  */
 
 require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
index 66a4cfe41399c4742fda53641b4c5445c757e2b0..5709ee6d8f0abf61c2afd055b4f4effef218970c 100644 (file)
@@ -8,16 +8,14 @@
  * 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
+ * @package Elgg.Core
+ * @subpackage Registration
  */
 
 /**
  * Start the Elgg engine
  *
- * WHY???? In the case this file is called thru a page handler: $CONFIG
+ * Why? In the case this file is called thru a page handler: $CONFIG
  * is not within the global scope (the page handler function does not include it).
  * BUT, there _might_ exist direct calls to this file, requiring the engine
  * to be started. Logic for both cases follow.