aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-08-12 12:57:43 +0200
committerAndreas Fischer <bantu@phpbb.com>2013-08-12 12:57:43 +0200
commitf6c6122eed3f05937ba6d4ec25d5707472a6ac00 (patch)
treedd2e00a3056a6271cc0051fb6cf0801ac41edcbd
parent9f8fffc54aae363a0ea7d65ee472e8a4b4b82d01 (diff)
parenta0206a61bcc174d04f80a6e172f37b25f5b84694 (diff)
downloadforums-f6c6122eed3f05937ba6d4ec25d5707472a6ac00.tar
forums-f6c6122eed3f05937ba6d4ec25d5707472a6ac00.tar.gz
forums-f6c6122eed3f05937ba6d4ec25d5707472a6ac00.tar.bz2
forums-f6c6122eed3f05937ba6d4ec25d5707472a6ac00.tar.xz
forums-f6c6122eed3f05937ba6d4ec25d5707472a6ac00.zip
Merge remote-tracking branch 'cyberalien/ticket/11781' into develop
* cyberalien/ticket/11781: [ticket/11781] Include func update_post_information()
-rw-r--r--phpBB/phpbb/content_visibility.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/phpbb/content_visibility.php b/phpBB/phpbb/content_visibility.php
index 4ad5f6793e..fb8ece0e8c 100644
--- a/phpBB/phpbb/content_visibility.php
+++ b/phpBB/phpbb/content_visibility.php
@@ -360,6 +360,11 @@ class phpbb_content_visibility
// Sync the first/last topic information if needed
if (!$is_starter && $is_latest)
{
+ if (!function_exists('update_post_information'))
+ {
+ include($this->phpbb_root_path . 'includes/functions_posting.' . $this->php_ext);
+ }
+
// update_post_information can only update the last post info ...
if ($topic_id)
{