Changeset 53
- Timestamp:
- 24/08/06 09:29:18 (7 years ago)
- Files:
-
- 1 added
- 1 modified
-
components/static.php (modified) (2 diffs)
-
static/404.txt (added)
Legend:
- Unmodified
- Added
- Removed
-
components/static.php
r37 r53 8 8 else 9 9 $title = "Static Page Producer"; 10 $smarty->assign("title", $title);11 10 12 11 $smarty->assign("body", "wantfile=$path"); … … 14 13 if (file_exists($myfile)) { 15 14 $smarty->assign("body", file_get_contents($myfile)); 15 } else { 16 header("HTTP/1.1 404 Not Found"); 17 $smarty->assign("body", file_get_contents("static/404.txt")); 18 $title="File not found"; 16 19 } 17 20 21 $smarty->assign("title", $title); 22 18 23 ?>
