diff --git a/rn/MdEstatisticasColetarRN.php b/rn/MdEstatisticasColetarRN.php index 79b9827..98481e7 100644 --- a/rn/MdEstatisticasColetarRN.php +++ b/rn/MdEstatisticasColetarRN.php @@ -61,8 +61,7 @@ public function coletarIndicadores() { private static function bolArrFindItem($arrNeedle, $strHaystack){ $r=false; foreach ($arrNeedle as $v) { - $r=strpos($strHaystack, $v); - if($r === 0 || $r) return $r; + if(strstr($strHaystack, $v)) return true; } return $r; }