Complete [1086]
authorx2003bruneau <x2003bruneau@839d8a87-29fc-0310-9880-83ba4fa771e5>
Wed, 15 Nov 2006 10:44:27 +0000 (10:44 +0000)
committerx2003bruneau <x2003bruneau@839d8a87-29fc-0310-9880-83ba4fa771e5>
Wed, 15 Nov 2006 10:44:27 +0000 (10:44 +0000)
git-svn-id: svn+ssh://murphy/home/svn/platal/trunk@1087 839d8a87-29fc-0310-9880-83ba4fa771e5

modules/lists.php
modules/search.php
modules/xnetgrp.php

index 516a88e..e00ecc0 100644 (file)
@@ -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')) {
index 68760b2..d761175 100644 (file)
@@ -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);
index 171a421..ee3aaa7 100644 (file)
@@ -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'";