diff --git a/addressbook/csv_import.php b/addressbook/csv_import.php index 3ff7ef46b8..9f8b43fef6 100644 --- a/addressbook/csv_import.php +++ b/addressbook/csv_import.php @@ -329,7 +329,8 @@ } if($val[0] == '@') { - $val = 'return '.substr($val,1).';'; + // removing the $ to close security hole of showing vars, which contain eg. passwords + $val = 'return '.substr(str_replace('$','',$val),1).';'; // echo "

eval('$val')="; $val = eval($val); // echo "'$val'

";