mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
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:
parent
359f3e21cb
commit
c996a8aa41
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||||
|
|
Loading…
Add table
Reference in a new issue