Browse Source

Redirect to referer

pull/40/head
Savetheinternet 14 years ago
parent
commit
130efdf467
  1. 9
      mod.php

9
mod.php

@ -194,8 +194,13 @@
deletePost($post);
// Rebuild board
buildIndex();
// Redirect to board
header('Location: ?/' . sprintf(BOARD_PATH, $boardName) . FILE_INDEX, true, REDIRECT_HTTP);
// Redirect
if(isset($_SERVER['HTTP_REFERER']))
header('Location: ' . $_SERVER['HTTP_REFERER'], true, REDIRECT_HTTP);
else
header('Location: ?/' . sprintf(BOARD_PATH, $boardName) . FILE_INDEX, true, REDIRECT_HTTP);
} else {
error("Page not found.");
}

Loading…
Cancel
Save