diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-05-26 15:04:27 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-05-26 15:04:27 +0000 |
commit | 9fca29eae3051730b72f6144e2683cd2fe7c8d0b (patch) | |
tree | 247a6d85513aecc010d34dec73e80d0996f4df05 /phpBB/includes/functions_posting.php | |
parent | 8dc9fc089bf3a45bd5f23986d5c9f4992196834f (diff) | |
download | forums-9fca29eae3051730b72f6144e2683cd2fe7c8d0b.tar forums-9fca29eae3051730b72f6144e2683cd2fe7c8d0b.tar.gz forums-9fca29eae3051730b72f6144e2683cd2fe7c8d0b.tar.bz2 forums-9fca29eae3051730b72f6144e2683cd2fe7c8d0b.tar.xz forums-9fca29eae3051730b72f6144e2683cd2fe7c8d0b.zip |
some tiny changes...
git-svn-id: file:///svn/phpbb/trunk@5967 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r-- | phpBB/includes/functions_posting.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 5d8f1dcb90..9d642457a4 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -178,6 +178,8 @@ function update_post_information($type, $ids, $return_update_sql = false) WHERE {$type}_id = $update_id"; $db->sql_query($sql); } + + return; } /** @@ -1263,7 +1265,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u // We do not handle erasing posts here if ($mode == 'delete') { - return; + return false; } $current_time = time(); |