Fixed the redirect URL variable.

This commit is contained in:
Josh Sherman 2010-09-26 23:17:52 -04:00
parent 583d75350b
commit afe82e3da3

View file

@ -160,7 +160,7 @@ class Controller extends Object
$redirect_url .= $this->config->pickles['404'];
}
header('Location: ' . $redirect, 404);
header('Location: ' . $redirect_url, 404);
exit;
}
}