diff options
author | Marc Alexander <admin@m-a-styles.de> | 2020-01-01 16:25:11 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2020-01-01 16:25:11 +0100 |
commit | 7a294b5fcd7e38beb52bf3f899b483da476c0c59 (patch) | |
tree | b041da9356196c58b391ac836d50b34d1554c147 /phpBB/phpbb/feed/controller | |
parent | 6ee537b3f2f45b300e38a55759566abb0752ec0f (diff) | |
parent | a3276c3ffecb677dd9104f65a88bfbf1a368ead1 (diff) | |
download | forums-7a294b5fcd7e38beb52bf3f899b483da476c0c59.tar forums-7a294b5fcd7e38beb52bf3f899b483da476c0c59.tar.gz forums-7a294b5fcd7e38beb52bf3f899b483da476c0c59.tar.bz2 forums-7a294b5fcd7e38beb52bf3f899b483da476c0c59.tar.xz forums-7a294b5fcd7e38beb52bf3f899b483da476c0c59.zip |
Merge pull request #5795 from 3D-I/ticket/16274
[ticket/16274] Fix compact() call to undefined variables in search.php
Diffstat (limited to 'phpBB/phpbb/feed/controller')
-rw-r--r-- | phpBB/phpbb/feed/controller/feed.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/phpBB/phpbb/feed/controller/feed.php b/phpBB/phpbb/feed/controller/feed.php index c0d7bc72ec..7826d19042 100644 --- a/phpBB/phpbb/feed/controller/feed.php +++ b/phpBB/phpbb/feed/controller/feed.php @@ -308,14 +308,13 @@ class feed * Event to modify the feed row * * @event core.feed_modify_feed_row - * @var int forum_id Forum ID - * @var string mode Feeds mode (forums|topics|topics_new|topics_active|news) + * @var feed_interface feed Feed instance * @var array row Array with feed data - * @var int topic_id Topic ID * * @since 3.1.10-RC1 + * @changed 3.3.0 Replace forum_id, mode, topic_id with feed instance */ - $vars = array('forum_id', 'mode', 'row', 'topic_id'); + $vars = array('feed', 'row'); extract($this->phpbb_dispatcher->trigger_event('core.feed_modify_feed_row', compact($vars))); // BBCode options to correctly disable urls, smilies, bbcode... |