]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/admin-inc.php
Additional fixes for XML handler and listing builder
[mailer.git] / inc / modules / admin / admin-inc.php
index a9ba79610137c0a415f9006d98b13535aaa9573b..e8257ceaeed4a77ec53c85441fe4bc4c10f01b5f 100644 (file)
@@ -495,7 +495,7 @@ ORDER BY
        while ($content = SQL_FETCHARRAY($result)) {
                //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . intval($userid) . '/' . $content['userid']);
                $OUT .= '<option value="' . bigintval($content['userid']) . '"';
-               if (bigintval($userid) === bigintval($content['userid'])) {
+               if (bigintval($userid, FALSE, FALSE) === bigintval($content['userid'])) {
                        $OUT .= ' selected="selected"';
                } // END - if
                $OUT .= '>' . $content['surname'] . ' ' . $content['family'] . ' (' . bigintval($content['userid']) . ')</option>';