From: x2003bruneau Date: Wed, 15 Nov 2006 10:44:27 +0000 (+0000) Subject: Complete [1086] X-Git-Tag: xorg/0.9.12~110 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=2aa20e30505a0d1acc7ad1a2ebf74d001a4167f7;p=platal.git Complete [1086] git-svn-id: svn+ssh://murphy/home/svn/platal/trunk@1087 839d8a87-29fc-0310-9880-83ba4fa771e5 --- diff --git a/modules/lists.php b/modules/lists.php index 516a88e..e00ecc0 100644 --- a/modules/lists.php +++ b/modules/lists.php @@ -125,6 +125,7 @@ class ListsModule extends PLModule function handler_ajax(&$page, $list = null) { + header('Content-Type: text/html; charset="iso-8859-15"'); $domain = $this->prepare_client($page); $page->changeTpl('listes/liste.inc.tpl', NO_SKIN); if (Get::has('unsubscribe')) { diff --git a/modules/search.php b/modules/search.php index 68760b2..d761175 100644 --- a/modules/search.php +++ b/modules/search.php @@ -252,6 +252,7 @@ class SearchModule extends PLModule function handler_region(&$page, $country = null) { + header('Content-Type: text/html; charset="iso-8859-15"'); require_once("geoloc.inc.php"); $page->ChangeTpl('search/adv.region.form.tpl', NO_SKIN); $page->assign('region', ""); @@ -260,6 +261,7 @@ class SearchModule extends PLModule function handler_grade(&$page, $school = null) { + header('Content-Type: text/html; charset="iso-8859-15"'); $page->ChangeTpl('search/adv.grade.form.tpl', NO_SKIN); $page->assign('grade', ''); $this->get_diplomas($school); diff --git a/modules/xnetgrp.php b/modules/xnetgrp.php index 171a421..ee3aaa7 100644 --- a/modules/xnetgrp.php +++ b/modules/xnetgrp.php @@ -730,6 +730,7 @@ class XnetGrpModule extends PLModule function handler_admin_member_new_ajax(&$page) { + header('Content-Type: text/html; charset="iso-8859-15"'); $page->changeTpl('xnet/groupe/membres-new-search.tpl', NO_SKIN); list($nom, $prenom) = str_replace(array('-', ' ', "'"), '%', array(Env::v('nom'), Env::v('prenom'))); $where = "perms = 'pending'";