aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-09-15 19:29:09 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-09-15 19:29:09 +0000
commit3d7c1441ea3ba018f2bb68be986d08d15aea6374 (patch)
tree105b885b0e594d626812482716ddcd724eb5158a
parentf2fd82538c842eaa3106efd8b06b38adb3acec81 (diff)
downloadelgg-3d7c1441ea3ba018f2bb68be986d08d15aea6374.tar.gz
elgg-3d7c1441ea3ba018f2bb68be986d08d15aea6374.tar.bz2
Refs #2450: Updated docs for account/*
git-svn-id: http://code.elgg.org/elgg/trunk@6940 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r--account/forgotten_password.php6
-rw-r--r--account/register.php8
2 files changed, 5 insertions, 9 deletions
diff --git a/account/forgotten_password.php b/account/forgotten_password.php
index 1741a06b0..827b254c9 100644
--- a/account/forgotten_password.php
+++ b/account/forgotten_password.php
@@ -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");
diff --git a/account/register.php b/account/register.php
index 66a4cfe41..5709ee6d8 100644
--- a/account/register.php
+++ b/account/register.php
@@ -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.