summaryrefslogtreecommitdiff
path: root/bin/backend.php
diff options
context:
space:
mode:
authorAlib <aliboba@free.fr>2010-03-17 18:37:01 +0100
committerAlib <aliboba@free.fr>2010-03-17 18:37:01 +0100
commitd425e7f9f8c7ffe40f133e99e1d6ca6c6fee9d80 (patch)
treecba7e045a43716e1fd9846e1c99667196ce7f4b1 /bin/backend.php
parent9f94e565988c2cd5bf765b4d21584b1ac2fcb64f (diff)
downloadistreamdev-d425e7f9f8c7ffe40f133e99e1d6ca6c6fee9d80.tar.gz
istreamdev-d425e7f9f8c7ffe40f133e99e1d6ca6c6fee9d80.tar.bz2
solved category character encoding bug
Diffstat (limited to 'bin/backend.php')
-rwxr-xr-xbin/backend.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/backend.php b/bin/backend.php
index 3eaa127..a3104dd 100755
--- a/bin/backend.php
+++ b/bin/backend.php
@@ -1,6 +1,6 @@
<?php
-header('Content-Type: application/json; charset: UTF-8');
+header('Content-Type: application/json; charset: utf-8');
if (file_exists('../config.php'))
include ('../config.php');
@@ -25,7 +25,7 @@ switch ($action)
print $tree;
break;
case ("getTvCat"):
- $tree = getTvCat();
+ $tree = getTvCat();
print $tree;
break;