Fix bug in redirect.
This commit is contained in:
parent
0b3ecf8973
commit
b625ebdcf3
|
@ -79,9 +79,9 @@ public function with($key, $value)
|
|||
*/
|
||||
public static function __callStatic($method, $parameters)
|
||||
{
|
||||
$parameters = (isset($parameters[0])) ? $parameters[0] : array();
|
||||
|
||||
$status = (isset($parameters[1])) ? $parameters[1] : 302;
|
||||
|
||||
$parameters = (isset($parameters[0])) ? $parameters[0] : array();
|
||||
|
||||
if (strpos($method, 'to_secure_') === 0)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue