aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-03-03 17:41:21 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-03-03 17:41:21 +0000
commitc93a40ed0c8d2570dfc82719a3b56590cf7a92f8 (patch)
treeb9cf8d7a9dbc4bfcaed7212e3d844c11ae3fce49 /phpBB/posting.php
parentb231c4234c513b3d9228306cf4c221e323456363 (diff)
downloadforums-c93a40ed0c8d2570dfc82719a3b56590cf7a92f8.tar
forums-c93a40ed0c8d2570dfc82719a3b56590cf7a92f8.tar.gz
forums-c93a40ed0c8d2570dfc82719a3b56590cf7a92f8.tar.bz2
forums-c93a40ed0c8d2570dfc82719a3b56590cf7a92f8.tar.xz
forums-c93a40ed0c8d2570dfc82719a3b56590cf7a92f8.zip
Fixing the following bugs:
#8444 (language dependent buttons no longer include the dimensions to allow bigger/smaller translated images) #8414 #8396 #8388 #8216 thanks to bartvb and kellanved for providing possible fixes... git-svn-id: file:///svn/phpbb/trunk@7114 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r--phpBB/posting.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 3515d118b3..b772c7aa1d 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -907,6 +907,7 @@ if ($submit || $preview || $refresh)
'topic_first_post_id' => (isset($post_data['topic_first_post_id'])) ? (int) $post_data['topic_first_post_id'] : 0,
'topic_last_post_id' => (isset($post_data['topic_last_post_id'])) ? (int) $post_data['topic_last_post_id'] : 0,
'topic_time_limit' => (int) $post_data['topic_time_limit'],
+ 'topic_attachment' => (isset($post_data['topic_attachment'])) ? (int) $post_data['topic_attachment'] : 0,
'post_id' => (int) $post_id,
'topic_id' => (int) $topic_id,
'forum_id' => (int) $forum_id,