summaryrefslogtreecommitdiff
path: root/bin/backend.php
diff options
context:
space:
mode:
authorTheTroll <trolldev@gmail.com>2010-03-17 18:41:27 +0100
committerTheTroll <trolldev@gmail.com>2010-03-17 18:41:27 +0100
commitecc23e50206d248f379fa8346561d3d6e11803fb (patch)
treebda961f97831686ba48f6dd156c4035ce524eae0 /bin/backend.php
parentbba9118edf4b05670bf6ee46af6a569f7fd5650c (diff)
parentc178fdfb5bd45e45e40af3aa969932af92e3287b (diff)
downloadistreamdev-ecc23e50206d248f379fa8346561d3d6e11803fb.tar.gz
istreamdev-ecc23e50206d248f379fa8346561d3d6e11803fb.tar.bz2
Merge branch 'jquery' of projects.vdr-developer.org:istreamdev into jquery
* 'jquery' of projects.vdr-developer.org:istreamdev: 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 6ae8488..3ed2dcb 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;