Change form method to post for basic operations.

git-svn-id: file:///svn/phpbb/trunk@2419 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2002-03-24 00:15:36 +00:00
parent 359f3e21cb
commit c996a8aa41

View file

@ -228,7 +228,7 @@ if( isset($HTTP_GET_VARS['import_pack']) || isset($HTTP_POST_VARS['import_pack']
$template->pparse("body"); $template->pparse("body");
} }
} }
else if( isset($HTTP_GET_VARS['export_pack']) ) else if( isset($HTTP_POST_VARS['export_pack']) || isset($HTTP_GET_VARS['export_pack']) )
{ {
// //
// Export our smiley config as a smiley pak... // Export our smiley config as a smiley pak...
@ -265,7 +265,7 @@ else if( isset($HTTP_GET_VARS['export_pack']) )
message_die(GENERAL_MESSAGE, $message); message_die(GENERAL_MESSAGE, $message);
} }
else if( isset($HTTP_GET_VARS['add']) ) else if( isset($HTTP_POST_VARS['add']) )
{ {
// //
// Admin has selected to add a smiley. // Admin has selected to add a smiley.