print_select, print_select_hash: remove line endings and other special symbols (closes #593)
This commit is contained in:
parent
44ae16ce27
commit
e88c194357
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue