Changeset 69 in subversion
- Timestamp:
- Oct 31, 2005 7:01:40 PM (8 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/steps/settings/save_identity.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r67 r69 69 69 - Added sorting patch for message list 70 70 - Make default sort col/order configurable 71 - Fixed XSS in address book and identities 72 -
trunk/roundcubemail/program/steps/settings/save_identity.inc
r58 r69 34 34 continue; 35 35 36 $a_write_sql[] = sprintf("`%s`='%s'", $col, addslashes( $_POST[$fname]));36 $a_write_sql[] = sprintf("`%s`='%s'", $col, addslashes(strip_tags($_POST[$fname]))); 37 37 } 38 38 … … 88 88 89 89 $a_insert_cols[] = $DB->quoteIdentifier($col); 90 $a_insert_values[] = sprintf("'%s'", addslashes( $_POST[$fname]));90 $a_insert_values[] = sprintf("'%s'", addslashes(strip_tags($_POST[$fname]))); 91 91 } 92 92
Note: See TracChangeset
for help on using the changeset viewer.
