Correction erreur retour
This commit is contained in:
parent
975c793037
commit
dafbe34da0
@ -419,7 +419,7 @@ function getCompanyMatchMethods($pays){
|
||||
$matchmethods->country = $pays;
|
||||
$matchmethods->methods = serialize('false');
|
||||
$matchmethods->replace();
|
||||
return false;
|
||||
return FALSE;
|
||||
}
|
||||
}else{
|
||||
return graydon_processSoapFault($graydon,$fault,$_SESSION['tabInfo']);
|
||||
@ -427,7 +427,8 @@ function getCompanyMatchMethods($pays){
|
||||
}
|
||||
}else{
|
||||
$methods = unserialize($matchmethods->methods);
|
||||
return $methods;
|
||||
if($methods=='false') return FALSE;
|
||||
else return $methods;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -35,8 +35,8 @@ $availability = getCountryAvailability($pays);
|
||||
|
||||
//Méthodes de recherche disponible pour les pays
|
||||
$methods = getCompanyMatchMethods($pays);
|
||||
|
||||
if (is_array($methods) && $methods!=='false'){
|
||||
$firephp->log($methods,'methods');
|
||||
if (is_array($methods) && $methods!=FALSE){
|
||||
$firephp->log($methods,'methods');
|
||||
//Affichage de la meilleur méthode de recherche OU la première
|
||||
$lien = 'La meilleure méthode de recherche vous est affiché par défaut.<br/> Effectuer un autre type recherche : ';
|
||||
@ -73,14 +73,14 @@ if (is_array($methods) && $methods!=='false'){
|
||||
}
|
||||
|
||||
print '<span class="left">'.$lien.'</span>';
|
||||
}elseif($methods === FALSE){
|
||||
}elseif($methods==FALSE){
|
||||
print '<div>Il n\'est pas possible de faire une recherche dans la base de ce pays.';
|
||||
|
||||
//Vérification des droits
|
||||
if(preg_match('/international/i', $_SESSION['tabInfo']['droits'])){
|
||||
print 'Pour commander une enquête sur ce pays rendez-vous sur cette <a href="/?page=international_enquete&pays='.$pays.'">page</a>.';
|
||||
}else{
|
||||
print 'Vous n\'avez pas les droits nécessaires pour commander un enquête sur ce pays.';
|
||||
print 'Vous n\'avez pas les droits nécessaires pour commander une enquête sur ce pays.';
|
||||
}
|
||||
print '</div>';
|
||||
}else{
|
||||
|
Loading…
x
Reference in New Issue
Block a user