Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 265515e

Browse files
committed
Fixed a bug that caused an Undefined property error
Signed-off-by: Gerben Peters <[email protected]>
1 parent 4651c39 commit 265515e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Illuminate/Routing/Redirector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function refresh($status = 302, $headers = array())
7878
*/
7979
public function guest($path, $status = 302, $headers = array(), $secure = null)
8080
{
81-
$this->session->put('url.intended', $this->url->full());
81+
$this->session->put('url.intended', $this->generator->full());
8282

8383
return $this->to($path, $status, $headers, $secure);
8484
}

0 commit comments

Comments
 (0)