Fixed redirect to not be hard-coded to http://, and pretty much avoided that problem by using an include instead.

This commit is contained in:
mike.morgan%oregonstate.edu 2006-03-24 22:25:34 +00:00
Родитель 8ce9356c37
Коммит 44fb96a462
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -51,7 +51,7 @@ if (!empty($sql['issue_id']) && count($sql['issue_id']) > 0) {
}
// Redirect to thank you page, and we're done.
header('Location: http://'.$_SERVER['HTTP_HOST'].WEB_PATH.'/thanks.php');
require_once('./thanks.php');
exit;