replaced deprecated split with explode

This commit is contained in:
Christian Walde
2010-07-30 22:28:31 +02:00
parent a5fa809335
commit cd6015203e
6 changed files with 13 additions and 13 deletions

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);