From ed2a30fe5266d29fb8d55cadd73c4201f1c9555a Mon Sep 17 00:00:00 2001 From: roundcube Date: Tue, 4 Apr 2006 21:38:49 +0000 Subject: Corrected regexp for numeric _to parameter git-svn-id: https://svn.roundcube.net/trunk@180 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/steps/mail/compose.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundcubemail/program/steps/mail/compose.inc b/roundcubemail/program/steps/mail/compose.inc index 8a41bdea3..b616f0758 100644 --- a/roundcubemail/program/steps/mail/compose.inc +++ b/roundcubemail/program/steps/mail/compose.inc @@ -98,7 +98,7 @@ function rcmail_compose_headers($attrib) $header = 'to'; // we have contact id's as get parameters - if (!empty($_GET['_to']) && preg_match('/^([0-9]+,?)+$/', $_GET['_to'])) + if (!empty($_GET['_to']) && preg_match('/^[0-9]+(,[0-9]+)*$/', $_GET['_to'])) { $a_recipients = array(); $sql_result = $DB->query("SELECT name, email -- cgit v1.2.3