Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 363 | Rev 568 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 363 Rev 562
Line 295... Line 295...
295
		$this->afficherDonnees('num_nom', $num);
295
		$this->afficherDonnees('num_nom', $num);
296
		if ($this->parametres['retour.format'] == 'min') { // sinon est affiché ds afficherDonnees(num_nom, $val) ci-dessus
296
		if ($this->parametres['retour.format'] == 'min') { // sinon est affiché ds afficherDonnees(num_nom, $val) ci-dessus
297
			 $this->table_retour['nom_sci'] = $tab['nom_sci'];
297
			 $this->table_retour['nom_sci'] = $tab['nom_sci'];
298
			 $this->table_retour['nom_sci_complet'] = $tab['nom_sci'].$this->ajouterCompositionNom($tab);
298
			 $this->table_retour['nom_sci_complet'] = $tab['nom_sci'].$this->ajouterCompositionNom($tab);
299
		}
299
		}
-
 
300
		if ($tab['num_nom_retenu'] != '') {
300
		$this->table_retour['retenu'] = ($tab['num_nom_retenu'] == $num) ? 'true' : 'false';
301
			$retenu = ($tab['num_nom_retenu'] == $num) ? 'true' : 'false';
-
 
302
		} else {
-
 
303
			$retenu = 'absent';
-
 
304
		}
-
 
305
		$this->table_retour['retenu'] = $retenu;
301
		unset($this->table_retour['id']);
306
		unset($this->table_retour['id']);
302
	}
307
	}
Line 303... Line 308...
303
 
308