diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-01-22 15:36:02 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-01-22 15:36:02 +0000 |
commit | 42af12957bbc7ff312040814f06dc6eed6d11f31 (patch) | |
tree | 25ec1c8d91cafe68f83ac7c3cf251beb73315304 /ajax | |
parent | 24ab0f6487d7a3883af126cc22f5d9d08acf3a80 (diff) | |
download | semanticscuttle-42af12957bbc7ff312040814f06dc6eed6d11f31.tar.gz semanticscuttle-42af12957bbc7ff312040814f06dc6eed6d11f31.tar.bz2 |
Interface Fix: correct utf8
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@239 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'ajax')
-rw-r--r-- | ajax/getlinkedtags.php | 2 | ||||
-rw-r--r-- | ajax/gettags.php | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ajax/getlinkedtags.php b/ajax/getlinkedtags.php index c4110a2..4a3543f 100644 --- a/ajax/getlinkedtags.php +++ b/ajax/getlinkedtags.php @@ -19,6 +19,8 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ***************************************************************************/ +header('Content-Type: text/html; charset=utf-8'); + /* Return a json file with list of linked tags */ require_once('../header.inc.php'); diff --git a/ajax/gettags.php b/ajax/gettags.php index 7b8b33a..b924ac3 100644 --- a/ajax/gettags.php +++ b/ajax/gettags.php @@ -19,6 +19,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ***************************************************************************/ +header('Content-Type: text/html; charset=utf-8'); + /* Return a json file with list of tags according to current user and sort by popularity*/ require_once('../header.inc.php'); |