1 restore.php restore_goto($url)

Light-weight version of backdrop_goto() that guarantees no database usage.

File

core/restore.php, line 328
Administrative page for restoring backup database and configuration files.

Code

function restore_goto($url) {
  $url = $GLOBALS['base_url'] . $_SERVER['SCRIPT_NAME'] . $url;
  header('Location: ' . $url, TRUE, 302);
  exit();
}