mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
12 lines
No EOL
279 B
PHP
12 lines
No EOL
279 B
PHP
<?php
|
|
global $global, $config;
|
|
if (!isset($global['systemRootPath'])) {
|
|
require_once '../../videos/configuration.php';
|
|
}
|
|
if (!User::isAdmin()) {
|
|
forbiddenPage("You can not do this");
|
|
exit;
|
|
}
|
|
$_page = new Page(array(''));
|
|
$_page->printEditorIndexFromFile(__FILE__);
|
|
?>
|