aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/cron/task
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-12-18 19:33:42 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-12-18 19:33:42 +0100
commitfd19ef7598a5d84485f4864bfcac36beef959a7c (patch)
treeaeabd554b44448eb0555209da45543b1312c8c04 /phpBB/phpbb/cron/task
parentf84c3687cce0e4dc1868016c14e416047013d784 (diff)
parent76e9f4dd2d45e8f128e59e1378dfd6778eec9d48 (diff)
downloadforums-fd19ef7598a5d84485f4864bfcac36beef959a7c.tar
forums-fd19ef7598a5d84485f4864bfcac36beef959a7c.tar.gz
forums-fd19ef7598a5d84485f4864bfcac36beef959a7c.tar.bz2
forums-fd19ef7598a5d84485f4864bfcac36beef959a7c.tar.xz
forums-fd19ef7598a5d84485f4864bfcac36beef959a7c.zip
Merge pull request #4585 from VSEphpbb/ticket/14925
[ticket/14925] Set reparser names in service definitions
Diffstat (limited to 'phpBB/phpbb/cron/task')
-rw-r--r--phpBB/phpbb/cron/task/text_reparser/reparser.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/cron/task/text_reparser/reparser.php b/phpBB/phpbb/cron/task/text_reparser/reparser.php
index 7099128efd..69392f5ac9 100644
--- a/phpBB/phpbb/cron/task/text_reparser/reparser.php
+++ b/phpBB/phpbb/cron/task/text_reparser/reparser.php
@@ -81,7 +81,7 @@ class reparser extends \phpbb\cron\task\base
*/
public function set_reparser($reparser)
{
- $this->reparser_name = (!isset($this->reparsers[$reparser]) ? 'text_reparser.' : '') . $reparser;
+ $this->reparser_name = !isset($this->reparsers[$reparser]) ? $this->reparser_manager->find_reparser($reparser) : $reparser;
if ($this->resume_data === null)
{