diff options
author | thomascube <thomas@roundcube.net> | 2006-12-22 21:45:21 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-12-22 21:45:21 +0000 |
commit | ee883ad73d64639eb994a71e15b1a37c07ff3cb9 (patch) | |
tree | 2dd00a5976d0cb31a006f6489b9b9d3d0438abb3 /program/steps/addressbook | |
parent | 8af7757525b312b001bede8b044b83e993860878 (diff) |
Applied security patches by Kees Cook (Ubuntu) + little visual enhancements
Diffstat (limited to 'program/steps/addressbook')
-rw-r--r-- | program/steps/addressbook/delete.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/addressbook/delete.inc b/program/steps/addressbook/delete.inc index b95988d12..3e33cd864 100644 --- a/program/steps/addressbook/delete.inc +++ b/program/steps/addressbook/delete.inc @@ -21,7 +21,7 @@ $REMOTE_REQUEST = TRUE; -if ($_GET['_cid']) +if ($_GET['_cid'] && preg_match('/^[0-9]+(,[0-9]+)*$/',$_GET['_cid'])) { $DB->query("UPDATE ".get_table_name('contacts')." SET del=1 @@ -96,4 +96,4 @@ if ($_GET['_cid']) } exit; -?>
\ No newline at end of file +?> |