mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
10 lines
291 B
PHP
10 lines
291 B
PHP
<?php
|
|
global $global;
|
|
if (!class_exists("Plugin")) {
|
|
_error_log('avideoEndIncluded class Plugin not exists');
|
|
}elseif (!empty($global['avideoEndIncluded'])) {
|
|
//_error_log('avideoEndIncluded already processed');
|
|
}else{
|
|
AVideoPlugin::getEnd();
|
|
}
|
|
$global['avideoEndIncluded'] = 1;
|