lib/pear MDL-20876 fix deprecated split() calls to use explode, str_split or preg_split

Author: Jonathan Harker <[email protected]>
This commit is contained in:
Jonathan Harker
2010-07-20 01:16:55 +00:00
parent dbeee38cfc
commit fcbf4b6fac
5 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -105,7 +105,7 @@ class HTML_QuickForm_select extends HTML_QuickForm_element {
function setSelected($values)
{
if (is_string($values) && $this->getMultiple()) {
$values = split("[ ]?,[ ]?", $values);
$values = preg_split("/[ ]?,[ ]?/", $values);
}
if (is_array($values)) {
$this->_values = array_values($values);