From 4e8f54268cb2f762648c32307e27fb474d9c16e2 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 15 Oct 2012 06:51:54 +0000 Subject: [PATCH] fix for typo: path_url --> parse_url --- phpgwapi/inc/class.egw_framework.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.egw_framework.inc.php b/phpgwapi/inc/class.egw_framework.inc.php index 603585a03c..6c378d4966 100644 --- a/phpgwapi/inc/class.egw_framework.inc.php +++ b/phpgwapi/inc/class.egw_framework.inc.php @@ -736,7 +736,7 @@ abstract class egw_framework $max_modified = 0; $debug_minify = (bool)$GLOBALS['egw_info']['server']['debug_minify']; $base_path = $GLOBALS['egw_info']['server']['webserver_url']; - if ($base_path[0] != '/') $base_path = path_url($base_path, PHP_URL_PATH); + if ($base_path[0] != '/') $base_path = parse_url($base_path, PHP_URL_PATH); $css_file = ''; foreach(self::$css_include_files as $n => $path) {