From: Jean-Marc Pigeon Date: Tue, 25 Nov 2025 12:51:40 +0000 (-0500) Subject: Fix lvlmail.php about strlen X-Git-Tag: tag-0.19~41 X-Git-Url: https://jmp-git.ovh.safe.ca/?a=commitdiff_plain;h=72988cd114bbc8780440e8946c925fff7ece3da5;p=jmp%2Fmailleur Fix lvlmail.php about strlen --- diff --git a/www/lvlmai.php b/www/lvlmai.php index 18d8e7a..d741783 100644 --- a/www/lvlmai.php +++ b/www/lvlmai.php @@ -105,7 +105,7 @@ if (isset($_POST['offset'])) $rqst=NEW probe("actions",$limit,$offset); if (isset($_POST['username'])) { $username=trim(($_POST['username'])); - if (strln($username)>0) + if (strlen($username)>0) $rqst->where("(smtpfrom like '%$username%') OR (rcptto like '%$username%')"); } $numrec=$rqst->getnumrec();