Subversion Repositories eFlore/Projets.eflore-projets

Rev

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

Rev 767 Rev 1040
Line 234... Line 234...
234
		// SELECT num_nom, nom_sci, num_nom_retenu, basionyme FROM bdtfx_v2_00 WHERE num_nom = X LIMIT 0,100;
234
		// SELECT num_nom, nom_sci, num_nom_retenu, basionyme FROM bdtfx_v2_00 WHERE num_nom = X LIMIT 0,100;
235
		$this->format_reponse .= '/synonymie';
235
		$this->format_reponse .= '/synonymie';
236
		if (strrpos($this->requete_champ, ', basionyme') === false) {
236
		if (strrpos($this->requete_champ, ', basionyme') === false) {
237
			$this->requete_champ .= ', basionyme ';
237
			$this->requete_champ .= ', basionyme ';
238
		}
238
		}
-
 
239
		if (strrpos($this->requete_champ, ', num_type') === false) {
-
 
240
			$this->requete_champ .= ', num_type ';
-
 
241
		}
239
		$this->requete_condition[0] = 'num_nom_retenu = '.
242
		$this->requete_condition[0] = 'num_nom_retenu = '.
240
			'(SELECT num_nom_retenu FROM '.$this->table.' WHERE '.$this->requete_condition[0].')';
243
			'(SELECT num_nom_retenu FROM '.$this->table.' WHERE '.$this->requete_condition[0].')';
241
	}
244
	}
Line 242... Line 245...
242
 
245