Compare commits
3 commits
about-upda
...
develop
Author | SHA1 | Date | |
---|---|---|---|
971e744057 | |||
faef26e528 | |||
1f65756bdd |
3 changed files with 8 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
||||||
# The Bad Space
|
# The Bad Space
|
||||||
|
|
||||||
A searcable catalog of the worst places on the web.
|
A searchable catalog of the worst places on the web.
|
||||||
|
|
||||||
More features incoming
|
More features incoming
|
||||||
|
|
||||||
|
|
|
@ -45,12 +45,12 @@ class LocationController extends Controller
|
||||||
return back()->with('message', 'New Location Added. Take a break!');
|
return back()->with('message', 'New Location Added. Take a break!');
|
||||||
} else {
|
} else {
|
||||||
return back()->withErrors([
|
return back()->withErrors([
|
||||||
'error' => 'Uh oh. There was an inssue',
|
'error' => 'Uh oh. There was an issue.',
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return back()->withErrors([
|
return back()->withErrors([
|
||||||
'error' => 'All fields are required',
|
'error' => 'All fields are required.',
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,7 @@ class LocationController extends Controller
|
||||||
$duplicates = 0;
|
$duplicates = 0;
|
||||||
$fresh = 0;
|
$fresh = 0;
|
||||||
// ['url' => "rage.love"],
|
// ['url' => "rage.love"],
|
||||||
//['url' => "indyapocalypse.social"],
|
//['url' => "indiepocalypse.social"],
|
||||||
|
|
||||||
$unified = [];
|
$unified = [];
|
||||||
//$denycount = array_map('str_getcsv', file($this->defed));
|
//$denycount = array_map('str_getcsv', file($this->defed));
|
||||||
|
@ -145,7 +145,7 @@ class LocationController extends Controller
|
||||||
'uuid' => Uuid::uuid4(),
|
'uuid' => Uuid::uuid4(),
|
||||||
'name' => $item['url'],
|
'name' => $item['url'],
|
||||||
'url' => $item['url'],
|
'url' => $item['url'],
|
||||||
'description' => ($item['comment'] != null) ? $item['comment'] : "no description",
|
'description' => ($item['comment'] != null) ? $item['comment'] : "No description provided.",
|
||||||
'active' => true,
|
'active' => true,
|
||||||
'rating' => $item['rating'],
|
'rating' => $item['rating'],
|
||||||
'added_by' => 1,
|
'added_by' => 1,
|
||||||
|
|
|
@ -25,10 +25,10 @@
|
||||||
<strong>Suspended Count: {{$location->block_count}}</strong>
|
<strong>Suspended Count: {{$location->block_count}}</strong>
|
||||||
|
|
||||||
@endif
|
@endif
|
||||||
<br />
|
<br /><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>
|
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 />UPDATED : {{$updated}}
|
<br /><br />UPDATED: {{$updated}}
|
||||||
</article>
|
</article>
|
||||||
</section>
|
</section>
|
||||||
@endsection
|
@endsection
|
Loading…
Reference in a new issue