From b6ec303f50cfa233374d12b06a539025da70e303 Mon Sep 17 00:00:00 2001 From: "ctrlaltca@gmail.com" <> Date: Sat, 21 May 2011 21:26:33 +0000 Subject: up-ported to trunk/ unit tests fixes from r2921 --- tests/unit/Prado.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/unit/Prado.php') diff --git a/tests/unit/Prado.php b/tests/unit/Prado.php index 9e73c934..6368a086 100644 --- a/tests/unit/Prado.php +++ b/tests/unit/Prado.php @@ -19,7 +19,7 @@ class Prado extends PradoBase { return self::$_application; } - public static function using($namespace) + public static function using($namespace,$checkClassExistence=true) { if(isset(self::$_usings[$namespace]) || class_exists($namespace,false)) return; @@ -133,7 +133,7 @@ class Prado extends PradoBase { $languages=array(); foreach(explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']) as $language) { - $array=split(';q=',trim($language)); + $array=explode(';q=',trim($language)); $languages[trim($array[0])]=isset($array[1])?(float)$array[1]:1.0; } arsort($languages); @@ -147,4 +147,4 @@ class Prado extends PradoBase { } -?> \ No newline at end of file +?> -- cgit v1.2.3