EngineGP/system/engine/replenish.php
Sergei Solovev 91c2b73c16 Closing tags for PSR-12 have been removed
Unpredictable result
2024-03-11 00:54:27 +03:00

12 lines
356 B
PHP

<?php
if (!DEFINED('EGP'))
exit(header('Refresh: 0; URL=http://' . $_SERVER['HTTP_HOST'] . '/404'));
if (!isset($url['response']) and !in_array($url['response'], array('success', 'fail')))
exit();
if ($url['response'] == 'success')
sys::out(file_get_contents(ROOT . 'success.html'));
else
sys::out(file_get_contents(ROOT . 'fail.html'));