Subversion Repositories eFlore/Applications.del

Rev

Rev 1779 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1779 Rev 1800
Line 96... Line 96...
96
				create_function('&$v, $k, $sep', '$v = preg_split("/".$sep."/", $v, -1, PREG_SPLIT_NO_EMPTY);'),
96
				create_function('&$v, $k, $sep', '$v = preg_split("/".$sep."/", $v, -1, PREG_SPLIT_NO_EMPTY);'),
97
				$additional_sep);
97
				$additional_sep);
98
		}
98
		}
99
		$words = DelTk::array_flatten($words);
99
		$words = DelTk::array_flatten($words);
100
		$words = array_map('trim', $words);
100
		$words = array_map('trim', $words);
-
 
101
 
101
		return array($op => array_filter($words));
102
		$ret = array($op => array_filter($words));
-
 
103
		return $ret;
102
	}
104
	}
Line 103... Line 105...
103
 
105
 
104
 
106