1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/12150] Add missing prune settings variables in acp_forums

PHPBB3-12150
This commit is contained in:
Marc Alexander
2014-02-02 12:52:57 +01:00
parent 02fdae4e88
commit d97c58aeea
3 changed files with 9 additions and 3 deletions

View File

@@ -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']);
}
}