HOOK_ARTICLE_IMAGE: stop after first provided match

This commit is contained in:
Andrew Dolgov 2021-03-07 14:19:00 +03:00
parent 518e677a6b
commit 72c04123d4
1 changed files with 4 additions and 1 deletions

View File

@ -550,8 +550,11 @@ class Article extends Handler_Protected {
$article_kind = 0;
PluginHost::getInstance()->chain_hooks_callback(PluginHost::HOOK_ARTICLE_IMAGE,
function ($result) use (&$article_image, &$article_stream, &$content) {
function ($result, $plugin) use (&$article_image, &$article_stream, &$content) {
list ($article_image, $article_stream, $content) = $result;
// run until first hard match
return !empty($article_image);
},
$enclosures, $content, $site_url, $headline);