Subversion Repositories eFlore/Projets.eflore-projets

Rev

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

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