diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-08-22 16:43:57 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-08-22 16:43:57 +0000 |
commit | 4f3dc431f61501b8898646ef70647655934c47ad (patch) | |
tree | 9b2e645b62629c22159fe5249a15d6ff7511f4f5 | |
parent | fcc9e69b8017d5a267c82dcead56a5c624e3c691 (diff) | |
download | elgg-4f3dc431f61501b8898646ef70647655934c47ad.tar.gz elgg-4f3dc431f61501b8898646ef70647655934c47ad.tar.bz2 |
since elgg uses POST, I override to use post on forms
-rw-r--r-- | views/default/tidypics/tagging.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/tidypics/tagging.php b/views/default/tidypics/tagging.php index 513845e32..49bbadc44 100644 --- a/views/default/tidypics/tagging.php +++ b/views/default/tidypics/tagging.php @@ -57,7 +57,7 @@ $content .= "<input type='submit' value='" . elgg_echo('tidypics:actiontag') . "' class='submit_button' />";
- echo elgg_view('input/form', array('internalid' => 'quicksearch', 'internalname' => 'tidypics_phototag_form', 'class' => 'quicksearch', 'action' => "{$vars['url']}action/tidypics/addtag", 'body' => $content));
+ echo elgg_view('input/form', array('internalid' => 'quicksearch', 'internalname' => 'tidypics_phototag_form', 'class' => 'quicksearch', 'action' => "{$vars['url']}action/tidypics/addtag", 'method' => 'post', 'body' => $content));
?>
</div>
@@ -74,7 +74,7 @@ $content .= "<input type='submit' value='" . elgg_echo('tidypics:actiondelete') . "' class='submit_button' />";
$content .= "<input type='button' value='" . elgg_echo('cancel') . "' class='cancel_button' onclick='hideDeleteMenu();' />";
- echo elgg_view('input/form', array('internalname' => 'phototag_deletetag_form', 'action' => "{$vars['url']}action/tidypics/deletetag", 'body' => $content));
+ echo elgg_view('input/form', array('internalname' => 'phototag_deletetag_form', 'action' => "{$vars['url']}action/tidypics/deletetag", 'method' => 'post', 'body' => $content));
}
echo '</div>'; // tidypics_delete_tag_menu
|