split is deprecated in php5.3, use explode instead

This commit is contained in:
Shish 2010-07-30 15:36:33 +01:00
parent ebf25505eb
commit 81ea250fdf

View File

@ -859,7 +859,7 @@ function _get_page_request() {
$args = _get_query_parts();
if(count($args) == 0 || strlen($args[0]) == 0) {
$args = split('/', $config->get_string('front_page'));
$args = explode('/', $config->get_string('front_page'));
}
return new PageRequestEvent($args);