Interface Fix: improve utf-8 behaviour
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@240 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
42af12957b
commit
34645dd6e8
3 changed files with 3 additions and 4 deletions
|
@ -19,8 +19,6 @@
|
|||
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');
|
||||
|
|
|
@ -19,8 +19,6 @@ 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');
|
||||
|
|
|
@ -48,4 +48,7 @@ $templateservice =& ServiceFactory::getServiceInstance('TemplateService');
|
|||
$tplVars = array();
|
||||
$tplVars['currentUser'] = $currentUser;
|
||||
$tplVars['userservice'] = $userservice;
|
||||
|
||||
// 6 // Force UTF-8 behaviour for server (cannot be move into top.inc.php which is not included into every file)
|
||||
header('Content-Type: text/html; charset=utf-8');
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue