summaryrefslogtreecommitdiff
path: root/www/functions/func_failure.php
blob: 682aceda2783c5e20de6548f20fbb0145887ccac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* --PAGE NOT FOUND - 404 -- */

function get_404($working_path, $wrong_folder){
        include("404.php");
        exit;
}

function failure($reason){
        echo "A 404 error occurred. <br>";
        echo $reason;
        exit;
}