Skip to content

Commit e144d5b

Browse files
committed
Update release_0_0_8.php
reconfigure two parametesr
1 parent 2e5996f commit e144d5b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

migrations/release_0_0_8.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,11 @@ public function calc_count_tags()
7373
{
7474
/* @var $auth \phpbb\auth\auth */
7575
$auth = $this->container->get('auth');
76+
$language = $this->container->get('language');
77+
$user = $this->container->get('user');
7678
$db_helper = new db_helper($this->db);
7779
$config_text = $this->container->get('config_text');
78-
$tags_manager = new tags_manager($this->db, $this->config, $config_text, $auth, $this->language, $this->user, $db_helper, $this->table_prefix);
80+
$tags_manager = new tags_manager($this->db, $this->config, $config_text, $auth, $language, $user, $db_helper, $this->table_prefix);
7981
$tags_manager->calc_count_tags();
8082
}
8183
}

0 commit comments

Comments
 (0)