aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/actions
diff options
context:
space:
mode:
authorBrett Profitt <brett.profitt@gmail.com>2012-12-16 14:45:48 -0500
committerBrett Profitt <brett.profitt@gmail.com>2012-12-16 14:45:48 -0500
commite8330243e2c76c70b53aab15d1c5631760b7c412 (patch)
tree99c62a2ef8209e15a2253acccc4abdd035b21933 /mod/pages/actions
parent4d360c11d14768c8a0229b8b2b1f02622f17c48a (diff)
downloadelgg-e8330243e2c76c70b53aab15d1c5631760b7c412.tar.gz
elgg-e8330243e2c76c70b53aab15d1c5631760b7c412.tar.bz2
Refs #1334. Move the page parent input to pages/input/parent.
Diffstat (limited to 'mod/pages/actions')
-rw-r--r--mod/pages/actions/pages/edit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/pages/actions/pages/edit.php b/mod/pages/actions/pages/edit.php
index 29fbf022b..40215e02e 100644
--- a/mod/pages/actions/pages/edit.php
+++ b/mod/pages/actions/pages/edit.php
@@ -72,7 +72,7 @@ if (sizeof($input) > 0) {
$page->container_guid = $container_guid;
if ($parent_guid && $parent_guid != $page_guid) {
- // Check if parent isn't below of the page in the tree
+ // Check if parent isn't below the page in the tree
if ($page_guid) {
$tree_page = get_entity($parent_guid);
while ($tree_page->parent_guid > 0 && $page_guid != $tree_page->guid) {