From 879cced5e01d43378065c938483b55a35ff10834 Mon Sep 17 00:00:00 2001
From: "Christophe.Boulain" <>
Date: Wed, 4 Nov 2009 16:38:15 +0000
Subject: Minor corrections to avoid runtime notice with php 5.3, and function
 rename in TDbConnection

---
 requirements/index.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'requirements')

diff --git a/requirements/index.php b/requirements/index.php
index 44879240..252f7a45 100644
--- a/requirements/index.php
+++ b/requirements/index.php
@@ -222,7 +222,7 @@ function getUserLanguages()
 		$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);
-- 
cgit v1.2.3