datatable.directory codebase https://datatable.directory/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
datatable.directory/vendor_patches/20_ci_login.patch

11 lines
534 B

--- vendor/laravel/framework/src/Illuminate/Auth/EloquentUserProvider.orig.php 2018-07-25 22:46:46.980782012 +0200
+++ vendor/laravel/framework/src/Illuminate/Auth/EloquentUserProvider.php 2018-07-25 22:48:47.490981175 +0200
@@ -121,7 +121,7 @@
if (is_array($value) || $value instanceof Arrayable) {
$query->whereIn($key, $value);
} else {
- $query->where($key, $value);
+ $query->whereRaw('LOWER(' . $key . ')=LOWER(?)', [$value]);
}
}