mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-10 13:39:22 -06:00
fix: migrate boolean columns to tinyint(1)
These columns were previously tiny ints without the (1) display width or regular ints, or smallints. They should all be tinyint(1).
This commit is contained in:
@@ -147,7 +147,7 @@ class RequestController extends Controller
|
||||
]);
|
||||
|
||||
// Auto Shout
|
||||
if ($torrentRequest->anon == 0) {
|
||||
if (!$torrentRequest->anon) {
|
||||
$this->chatRepository->systemMessage(
|
||||
\sprintf('[url=%s]%s[/url] has created a new request [url=%s]%s[/url]', href_profile($user), $user->username, href_request($torrentRequest), $torrentRequest->name)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user