1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/11481] Use container for all classes and inject dependencies

PHPBB3-11481
This commit is contained in:
Joas Schilling
2013-06-06 20:04:23 +02:00
parent b5f1484744
commit 3efe0eb246
9 changed files with 139 additions and 34 deletions

View File

@@ -47,7 +47,7 @@ abstract class phpbb_feed_topic_base extends phpbb_feed_base
{
global $phpEx, $config, $user;
$item_row['link'] = feed_append_sid('/viewtopic.' . $phpEx, 't=' . $row['topic_id'] . '&p=' . $row['post_id'] . '#p' . $row['post_id']);
$item_row['link'] = $this->helper->append_sid('/viewtopic.' . $phpEx, 't=' . $row['topic_id'] . '&p=' . $row['post_id'] . '#p' . $row['post_id']);
if ($config['feed_item_statistics'])
{