Compare commits

..

No commits in common. "develop" and "about-updates" have entirely different histories.

3 changed files with 8 additions and 8 deletions

View file

@ -1,6 +1,6 @@
# The Bad Space
A searchable catalog of the worst places on the web.
A searcable catalog of the worst places on the web.
More features incoming

View file

@ -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 issue.',
'error' => 'Uh oh. There was an inssue',
]);
}
} 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' => "indiepocalypse.social"],
//['url' => "indyapocalypse.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 provided.",
'description' => ($item['comment'] != null) ? $item['comment'] : "no description",
'active' => true,
'rating' => $item['rating'],
'added_by' => 1,

View file

@ -25,10 +25,10 @@
<strong>Suspended Count: {{$location->block_count}}</strong>
@endif
<br /><br />
This count reflects the number of times this instance has been suspended or silenced by two or more <a href="/about#how">Current Sources</a>.
<br />
This count reflects the number of times this instance has been suspended or silenced be two or more <a href="/about#how">Current Sources</a>
<br /><br />UPDATED: {{$updated}}
<br />UPDATED : {{$updated}}
</article>
</section>
@endsection