From 81ea250fdfa659d12566847004704ee47a1d4579 Mon Sep 17 00:00:00 2001 From: Shish Date: Fri, 30 Jul 2010 15:36:33 +0100 Subject: [PATCH] split is deprecated in php5.3, use explode instead --- core/util.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/util.inc.php b/core/util.inc.php index 64bf3a23..d6848538 100644 --- a/core/util.inc.php +++ b/core/util.inc.php @@ -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);