print_select, print_select_hash: remove line endings and other special symbols (closes #593)

This commit is contained in:
Andrew Dolgov 2013-03-19 09:02:40 +04:00
parent 44ae16ce27
commit e88c194357
1 changed files with 5 additions and 1 deletions

View File

@ -461,6 +461,8 @@
else
$sel = "";
$v = trim($v);
print "<option value=\"$v\" $sel>$v</option>";
}
print "</select>";
@ -474,6 +476,8 @@
else
$sel = "";
$v = trim($v);
print "<option $sel value=\"$v\">".$values[$v]."</option>";
}
@ -3908,7 +3912,7 @@
function implements_interface($class, $interface) {
return in_array($interface, class_implements($class));
}
function geturl($url){
(function_exists('curl_init')) ? '' : die('cURL Must be installed for geturl function to work. Ask your host to enable it or uncomment extension=php_curl.dll in php.ini');