From 971e744057b22b8a844551f61a037214dd062d5b Mon Sep 17 00:00:00 2001 From: alcapurrias Date: Wed, 6 Sep 2023 00:36:13 +0200 Subject: [PATCH] Update 'app/Http/Controllers/LocationController.php' --- app/Http/Controllers/LocationController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Http/Controllers/LocationController.php b/app/Http/Controllers/LocationController.php index b45c26b..afb5503 100644 --- a/app/Http/Controllers/LocationController.php +++ b/app/Http/Controllers/LocationController.php @@ -45,12 +45,12 @@ class LocationController extends Controller return back()->with('message', 'New Location Added. Take a break!'); } else { return back()->withErrors([ - 'error' => 'Uh oh. There was an inssue', + 'error' => 'Uh oh. There was an issue.', ]); } } else { return back()->withErrors([ - 'error' => 'All fields are required', + 'error' => 'All fields are required.', ]); } } @@ -65,7 +65,7 @@ class LocationController extends Controller $duplicates = 0; $fresh = 0; // ['url' => "rage.love"], - //['url' => "indyapocalypse.social"], + //['url' => "indiepocalypse.social"], $unified = []; //$denycount = array_map('str_getcsv', file($this->defed)); @@ -145,7 +145,7 @@ class LocationController extends Controller 'uuid' => Uuid::uuid4(), 'name' => $item['url'], 'url' => $item['url'], - 'description' => ($item['comment'] != null) ? $item['comment'] : "no description", + 'description' => ($item['comment'] != null) ? $item['comment'] : "No description provided.", 'active' => true, 'rating' => $item['rating'], 'added_by' => 1,