mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
refactor: remove duplicated trim()
It is already trimmed in Line 415.
This commit is contained in:
parent
6ba48cf061
commit
227f53a6cd
@ -424,7 +424,7 @@ class BaseBuilder
|
||||
* This prevents NULL being escaped
|
||||
* @see https://github.com/codeigniter4/CodeIgniter4/issues/1169
|
||||
*/
|
||||
if (mb_stripos(trim($val), 'NULL') === 0) {
|
||||
if (mb_stripos($val, 'NULL') === 0) {
|
||||
$this->QBNoEscape[] = false;
|
||||
|
||||
continue;
|
||||
|
Loading…
x
Reference in New Issue
Block a user