diff options
author | jasonmarlin <jason.marlin@gmail.com> | 2019-01-18 08:38:25 -0500 |
---|---|---|
committer | jasonmarlin <jason.marlin@gmail.com> | 2019-01-18 08:38:59 -0500 |
commit | c43ad073e4902471637140dc782733da3b93bfa1 (patch) | |
tree | bc219294c4ba2dc207c04811fb1db91983f5dcf8 | |
parent | a0f1ec852a987fb587cc07dc6910000c925db50d (diff) | |
download | forums-c43ad073e4902471637140dc782733da3b93bfa1.tar forums-c43ad073e4902471637140dc782733da3b93bfa1.tar.gz forums-c43ad073e4902471637140dc782733da3b93bfa1.tar.bz2 forums-c43ad073e4902471637140dc782733da3b93bfa1.tar.xz forums-c43ad073e4902471637140dc782733da3b93bfa1.zip |
[ticket/15941] Small change to induce rebuild
PHPBB3-15941
-rw-r--r-- | phpBB/includes/functions_posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 8ca483f53a..3640f543d9 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -200,7 +200,7 @@ function update_post_information($type, $ids, $return_update_sql = false) $topic_condition = ''; } - if (count($ids) === 1) + if (count($ids) == 1) { $sql = 'SELECT p.post_id as last_post_id FROM ' . POSTS_TABLE . " p $topic_join |