1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-25 01:02:50 +01:00

13 lines
298 B
PHP

<?php
require_once("../../../../class2.php");
$types = array('img','video','glyph');
$bbcode = in_array(e_QUERY,$types) ? e_QUERY : 'img';
header("Location: ".e_ADMIN_ABS.'image.php?mode=main&action=dialog&for='.$_SESSION['media_category'].'&tagid=&iframe=1&bbcode='.$bbcode, true);
exit;
?>