Browse Source

Better "page not found" code

pull/40/head
Savetheinternet 14 years ago
parent
commit
4052d63502
  1. 6
      mod.php

6
mod.php

@ -166,7 +166,9 @@
if(!openBoard($boardName))
error(ERROR_NOBOARD);
$page = index(empty($matches[2]) || $matches[2] == FILE_INDEX ? 1 : $matches[2], true);
if(!$page = index(empty($matches[2]) || $matches[2] == FILE_INDEX ? 1 : $matches[2], true)) {
error(ERROR_404);
}
$page['pages'] = getPages(true);
$page['mod'] = true;
@ -204,7 +206,7 @@
header('Location: ?/' . sprintf(BOARD_PATH, $boardName) . FILE_INDEX, true, REDIRECT_HTTP);
} else {
error("Page not found.");
error(ERROR_404);
}
}

Loading…
Cancel
Save