Refactor releases table

This commit is contained in:
DariusIII
2026-08-14 08:46:01 +02:00
parent 3a4aa0f21b
commit 79e7736c4c
25 changed files with 3941 additions and 670 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ class DetailsController extends BasePageController
}
if ($this->isPostBack($request)) {
ReleaseComment::addComment($data['id'], $data['gid'], $request->input('txtAddComment'), $this->userdata->id, $request->ip());
ReleaseComment::addComment((int) $data['id'], (string) $request->input('txtAddComment'), (int) $this->userdata->id, $request->ip());
return redirect()->route('details', ['guid' => $guid])->with('success', 'Comment posted successfully!');
}