From 427e34cecfc20343724c0df7387168a79173b7dd Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Wed, 23 Sep 2015 10:03:27 -0700 Subject: [PATCH] re-fix --- compass/app/Http/Controllers/IndieAuth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compass/app/Http/Controllers/IndieAuth.php b/compass/app/Http/Controllers/IndieAuth.php index 0271179..05135c9 100644 --- a/compass/app/Http/Controllers/IndieAuth.php +++ b/compass/app/Http/Controllers/IndieAuth.php @@ -170,7 +170,7 @@ class IndieAuth extends BaseController session(['user_id' => $user->id]); } else { $user_id = DB::table('users')->insertGetId([ - 'url' => $request->input('add_user'), + 'url' => $url, 'created_at' => date('Y-m-d H:i:s'), 'last_login' => date('Y-m-d H:i:s'), ]);