From efe6d51887af2e238455a6b433ad127ab2394a0c Mon Sep 17 00:00:00 2001 From: HDVinnie Date: Sat, 9 Feb 2019 20:23:19 -0500 Subject: [PATCH] (Update) System Messages :rocket: --- app/Console/Commands/AutoGraveyard.php | 2 +- app/Console/Commands/AutoRecycleClaimedTorrentRequests.php | 2 +- app/Console/Commands/AutoRemoveFeaturedTorrent.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Console/Commands/AutoGraveyard.php b/app/Console/Commands/AutoGraveyard.php index f45ef4ba96..61da508a8b 100644 --- a/app/Console/Commands/AutoGraveyard.php +++ b/app/Console/Commands/AutoGraveyard.php @@ -82,7 +82,7 @@ public function handle() $appurl = config('app.url'); $this->chat->systemMessage( - ":robot: [b][color=#fb9776]System[/color][/b] : Ladies and Gents, [url={$appurl}/{$user->username}.{$user->id}]{$user->username}[/url] has successfully resurrected [url={$appurl}/torrents/{$torrent->slug}.{$torrent->id}]{$torrent->name}[/url]. :zombie:" + "Ladies and Gents, [url={$appurl}/{$user->username}.{$user->id}]{$user->username}[/url] has successfully resurrected [url={$appurl}/torrents/{$torrent->slug}.{$torrent->id}]{$torrent->name}[/url]. :zombie:" ); // Send Private Message diff --git a/app/Console/Commands/AutoRecycleClaimedTorrentRequests.php b/app/Console/Commands/AutoRecycleClaimedTorrentRequests.php index 38875a640e..ba27f78eab 100644 --- a/app/Console/Commands/AutoRecycleClaimedTorrentRequests.php +++ b/app/Console/Commands/AutoRecycleClaimedTorrentRequests.php @@ -68,7 +68,7 @@ public function handle() if ($requestClaim) { $tr_url = hrefRequest($torrentRequest); $this->chat->systemMessage( - ":robot: [b][color=#fb9776]System[/color][/b] : [url={$tr_url}]{$torrentRequest->name}[/url] claim has been reset due to not being filled within 7 days." + "[url={$tr_url}]{$torrentRequest->name}[/url] claim has been reset due to not being filled within 7 days." ); $requestClaim->delete(); diff --git a/app/Console/Commands/AutoRemoveFeaturedTorrent.php b/app/Console/Commands/AutoRemoveFeaturedTorrent.php index 11bdbebe5d..ebfc39b995 100644 --- a/app/Console/Commands/AutoRemoveFeaturedTorrent.php +++ b/app/Console/Commands/AutoRemoveFeaturedTorrent.php @@ -69,7 +69,7 @@ public function handle() $appurl = config('app.url'); $this->chat->systemMessage( - ":robot: [b][color=#fb9776]System[/color][/b] : Ladies and Gents, [url={$appurl}/torrents/{$torrent->slug}.{$torrent->id}]{$torrent->name}[/url] is no longer featured. :poop:" + "Ladies and Gents, [url={$appurl}/torrents/{$torrent->slug}.{$torrent->id}]{$torrent->name}[/url] is no longer featured. :poop:" ); // Delete The Record From DB