summaryrefslogtreecommitdiff
path: root/tests/unit/Prado.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/Prado.php')
-rw-r--r--tests/unit/Prado.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/Prado.php b/tests/unit/Prado.php
index 9e73c934..18e3707f 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);