From: Michael Date: Thu, 21 Jun 2018 19:52:28 +0000 (+0000) Subject: We don't need to look $is_int there X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5656c0564afef720b427b34c857d7d96e65a75ad;p=friendica.git We don't need to look $is_int there --- diff --git a/include/dba.php b/include/dba.php index 17234f02b3..47471ae952 100644 --- a/include/dba.php +++ b/include/dba.php @@ -1314,7 +1314,7 @@ class dba { if ($is_int) { $casted = []; foreach ($value as $single_value) { - if ($is_int AND !$is_alpha) { + if (!$is_alpha) { $casted[] = (int)$single_value; } else { $casted[] = (string)$single_value;