]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
fixed stray character that got into pages edit action
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 20 Oct 2010 10:36:51 +0000 (10:36 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 20 Oct 2010 10:36:51 +0000 (10:36 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@7101 36083f99-b078-4883-b0ff-0f9b5a30f544

mod/pages/actions/pages/edit.php

index b583563f9e722745f962686cbd9b5ebab91f7886..396dd7e420eaf26ae1192a2b0377b71e578623a5 100644 (file)
@@ -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()) {