New mass delete form and options. #241

This commit is contained in:
James Cole
2016-04-23 09:33:54 +02:00
parent f43938726a
commit 3948cb8e6c
13 changed files with 288 additions and 6 deletions

View File

@@ -80,7 +80,7 @@ class FireflyValidator extends Validator
$count = DB::table($parameters[0])->where('user_id', Auth::user()->id)->where($field, $value)->count();
if ($count == 1) {
if ($count === 1) {
return true;
}