1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 10:49:36 +02:00
This commit is contained in:
Daniel Neto 2024-11-13 09:39:44 -03:00
parent 1784e17c8e
commit f78d2f7a17

View file

@ -2628,7 +2628,7 @@ function getAdsDebugTag($adCode)
$function = debug_backtrace()[1]["function"];
$function = str_replace('get', '', $function);
$reason = ADs::getAdsCodeReason($global['lastAdsCodeType']);
$adCode = "<div class=\"AdsDebug\">{$function}<br>{$reason}<br>$adCode</div>";
$adCode = "<div class=\"AdsDebug\">{$function}<br>".implode('<br>', $reason)."<br>$adCode</div>";
}
return $adCode;
}