EngineGP/system/engine/wiki.php

11 lines
334 B
PHP
Raw Normal View History

2023-03-04 23:45:46 +00:00
<?php
2023-03-05 13:59:34 +00:00
if(!DEFINED('EGP'))
exit(header('Refresh: 0; URL=http://'.$_SERVER['SERVER_NAME'].'/404'));
2023-03-04 23:45:46 +00:00
2023-03-05 13:59:34 +00:00
$title = 'Ответы на вопросы';
2023-03-04 23:45:46 +00:00
2023-03-05 13:59:34 +00:00
if(in_array($section, array('answer', 'question', 'search', 'msearch')))
include(SEC.'wiki/'.$section.'.php');
else
include(SEC.'wiki/index.php');
2023-03-04 23:45:46 +00:00
?>