Skip to content
Snippets Groups Projects
Unverified Commit 56a8e5d7 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

fix: cast actor_id to pass as int to set_interact_as_actor() function

parent d7726854
No related branches found
No related tags found
No related merge requests found
...@@ -181,7 +181,7 @@ class AuthController extends MythAuthController ...@@ -181,7 +181,7 @@ class AuthController extends MythAuthController
helper('auth'); helper('auth');
set_interact_as_actor($this->request->getPost('actor_id')); set_interact_as_actor((int) $this->request->getPost('actor_id'));
return redirect()->back(); return redirect()->back();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment