Working project

This commit is contained in:
grez911
2017-02-04 14:34:24 +03:00
parent 053b3aca01
commit b3b392b354
293 changed files with 40557 additions and 0 deletions

7
error.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
require("init.php");
$error_code = isset($_SESSION["error_code"]) ? $_SESSION["error_code"] : "";
unset($_SESSION["error_code"]);
$smarty->assign("error_code", $error_code);
$smarty->display("error.tpl");
?>