We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73c41f9 commit 36cfbe3Copy full SHA for 36cfbe3
app/Http/Controllers/Forum/ThreadsController.php
@@ -29,7 +29,7 @@ public function __construct()
29
30
public function overview()
31
{
32
- $search = request('search');
+ $search = (string) request('search');
33
$threads = $search ? SearchThreads::get($search) : Thread::feedPaginated();
34
35
return view('forum.overview', compact('threads', 'search'));
0 commit comments