From 4873cf7c4bb484ba8dfbe12e840402e3edd7c310 Mon Sep 17 00:00:00 2001 From: marcus Date: Mon, 11 Aug 2008 14:09:54 +0000 Subject: Refs #210 & #211 : Updated comments form git-svn-id: https://code.elgg.org/elgg/trunk@1828 36083f99-b078-4883-b0ff-0f9b5a30f544 --- actions/comments/add.php | 3 ++- views/default/comments/forms/edit.php | 26 ++++++-------------------- 2 files changed, 8 insertions(+), 21 deletions(-) diff --git a/actions/comments/add.php b/actions/comments/add.php index bdc7fd06f..e02079dbd 100644 --- a/actions/comments/add.php +++ b/actions/comments/add.php @@ -11,7 +11,8 @@ */ // Make sure we're logged in; forward to the front page if not - if (!isloggedin()) forward(); + gatekeeper(); + action_gatekeeper(); // Get input $entity_guid = (int) get_input('entity_guid'); diff --git a/views/default/comments/forms/edit.php b/views/default/comments/forms/edit.php index 700a451cb..b435d69b9 100644 --- a/views/default/comments/forms/edit.php +++ b/views/default/comments/forms/edit.php @@ -13,26 +13,12 @@ */ if (isset($vars['entity']) && isloggedin()) { - -?> - -
-

- -

-

- - " /> -

-
- -

"; + $form_body .= "

" . elgg_view('input/hidden', array('internalname' => 'entity_guid', 'value' => $vars['entity']->getGUID())); + $form_body .= elgg_view('input/submit', array('value' => elgg_echo("save"))) . "

"; + + echo elgg_view('input/form', array('body' => $form_body, 'action' => "{$vars['url']}action/comments/add")); } -- cgit v1.2.3