@header("Location:$url"); 추가로 warning 오류 제거

This commit is contained in:
gnuboard
2013-03-20 10:38:45 +09:00
parent 8b3a11b329
commit ca428762fd

View File

@ -87,7 +87,7 @@ function goto_url($url)
{
$url = str_replace("&", "&", $url);
//echo "<script> location.replace('$url'); </script>";
header("Location:$url");
@header("Location:$url");
exit;
}