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')) {
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', "");
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);
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'";