diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2007-03-26 15:42:05 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-03-26 15:42:05 +0000 |
| commit | 8ba8caec2dcdfcb755beeeaebc83c5ad1e057758 (patch) | |
| tree | 3834d961d46b647ddc22f1f1f9c3a88dc981d2ee /phpBB/includes/acp/acp_icons.php | |
| parent | b9d77ef8d56a5db128b519f466ed7f4b32c0dc89 (diff) | |
| download | forums-8ba8caec2dcdfcb755beeeaebc83c5ad1e057758.tar forums-8ba8caec2dcdfcb755beeeaebc83c5ad1e057758.tar.gz forums-8ba8caec2dcdfcb755beeeaebc83c5ad1e057758.tar.bz2 forums-8ba8caec2dcdfcb755beeeaebc83c5ad1e057758.tar.xz forums-8ba8caec2dcdfcb755beeeaebc83c5ad1e057758.zip | |
some tiny bugfixes and changed is_active() a bit...
git-svn-id: file:///svn/phpbb/trunk@7232 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_icons.php')
| -rw-r--r-- | phpBB/includes/acp/acp_icons.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_icons.php b/phpBB/includes/acp/acp_icons.php index 994b8ee7f6..8c6ebbc996 100644 --- a/phpBB/includes/acp/acp_icons.php +++ b/phpBB/includes/acp/acp_icons.php @@ -208,7 +208,7 @@ class acp_icons $image_width = (isset($_POST['width'])) ? request_var('width', array('' => 0)) : array(); $image_height = (isset($_POST['height'])) ? request_var('height', array('' => 0)) : array(); $image_add = (isset($_POST['add_img'])) ? request_var('add_img', array('' => 0)) : array(); - $image_emotion = request_var('emotion', array('' => '')); + $image_emotion = request_var('emotion', array('' => ''), true); $image_code = request_var('code', array('' => '')); $image_display_on_posting = (isset($_POST['display_on_posting'])) ? request_var('display_on_posting', array('' => 0)) : array(); |
