aboutsummaryrefslogtreecommitdiff
path: root/mod/pages/actions
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-10-20 10:36:51 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-10-20 10:36:51 +0000
commit72961826b01e7e67533f16bd0c2a943695dc6a86 (patch)
tree1a01d259092f7be63d7f1cf6e8b25a3a0ca04ba6 /mod/pages/actions
parentda5aa66e3e0d13e8fe4766168fb992183f107780 (diff)
downloadelgg-72961826b01e7e67533f16bd0c2a943695dc6a86.tar.gz
elgg-72961826b01e7e67533f16bd0c2a943695dc6a86.tar.bz2
fixed stray character that got into pages edit action
git-svn-id: http://code.elgg.org/elgg/trunk@7101 36083f99-b078-4883-b0ff-0f9b5a30f544
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 b583563f9..396dd7e42 100644
--- a/mod/pages/actions/pages/edit.php
+++ b/mod/pages/actions/pages/edit.php
@@ -76,7 +76,7 @@ if ($page instanceof ElggObject) {
$page->access_id = (int)get_input('access_id', ACCESS_PRIVATE);
$page->write_access_id = (int)get_input('write_access_id', ACCESS_PRIVATE);
- $page->parent_guid = $parent_guid;\
+ $page->parent_guid = $parent_guid;
$page->owner_guid = ($page->owner_guid ? $page->owner_guid : $_SESSION['user']->guid);
if ($page->save()) {