AvocadoAmber/AvocadoEdition_Light/tail.sub.php

20 lines
376 B
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
2024-10-01 02:01:37 +09:00
if (!defined('_GNUBOARD_'))
exit; // 개별 페이지 접근 불가
if (!defined('G5_IS_ADMIN') && defined('G5_THEME_PATH') && file_exists(G5_THEME_PATH . "/tail.sub.php")) {
include_once G5_THEME_PATH . '/tail.sub.php';
return;
}
2022-09-17 20:50:50 +09:00
unset($mb);
unset($row);
unset($row2);
2024-09-28 13:03:15 +09:00
EventHandler::triggerEvent("gnuboard.tail_sub");
2022-09-17 20:50:50 +09:00
?>
</body>
2024-10-01 02:01:37 +09:00
2022-09-17 20:50:50 +09:00
</html>
2024-09-19 20:36:07 +09:00
<?php
echo html_end();