EngineGP/system/engine/wiki.php
Sergei Solovev b59003e559 Reformat code
This update contains code reformatting to meet PHP standards.
2023-11-12 21:12:42 +03:00

11 lines
320 B
PHP

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