diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-02-02 12:52:57 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-03-29 21:57:00 +0100 |
commit | d97c58aeeaf24b6d76e21642e1764b471f212d87 (patch) | |
tree | dd10abac4cfea9d9ad3ef0b5b5dc3397b9ea4270 /phpBB/phpbb/cron | |
parent | 02fdae4e8800ded878dcdc848563aef202069317 (diff) | |
download | forums-d97c58aeeaf24b6d76e21642e1764b471f212d87.tar forums-d97c58aeeaf24b6d76e21642e1764b471f212d87.tar.gz forums-d97c58aeeaf24b6d76e21642e1764b471f212d87.tar.bz2 forums-d97c58aeeaf24b6d76e21642e1764b471f212d87.tar.xz forums-d97c58aeeaf24b6d76e21642e1764b471f212d87.zip |
[ticket/12150] Add missing prune settings variables in acp_forums
PHPBB3-12150
Diffstat (limited to 'phpBB/phpbb/cron')
-rw-r--r-- | phpBB/phpbb/cron/task/core/prune_shadow_topics.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/cron/task/core/prune_shadow_topics.php b/phpBB/phpbb/cron/task/core/prune_shadow_topics.php index 97e3a474c4..4d7166ccb3 100644 --- a/phpBB/phpbb/cron/task/core/prune_shadow_topics.php +++ b/phpBB/phpbb/cron/task/core/prune_shadow_topics.php @@ -75,7 +75,7 @@ class prune_shadow_topics extends \phpbb\cron\task\base implements \phpbb\cron\t if ($this->forum_data['prune_shadow_topic_days']) { - auto_prune($this->forum_data['forum_id'], 'shadow', $this->forum_data['forum_flags'], $this->forum_data['prune_shadow_topic_days'], $this->forum_data['prune_shadow_topic_freq']); + $this->auto_prune_shadow_topics($this->forum_data['forum_id'], 'shadow', $this->forum_data['forum_flags'], $this->forum_data['prune_shadow_topic_days'], $this->forum_data['prune_shadow_topic_freq']); } } |