Subversion Repositories Sites.outils-naturalistes.fr

Rev

Rev 41 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 41 Rev 45
Line 76... Line 76...
76
		if (!defined('BAZ_VOIR_FICHE')) define ('BAZ_VOIR_FICHE', 8) ;
76
		if (!defined('BAZ_VOIR_FICHE')) define ('BAZ_VOIR_FICHE', 8) ;
77
		define ('BAZ_SUPPRIMER_FICHE', 9) ;*/
77
		define ('BAZ_SUPPRIMER_FICHE', 9) ;*/
Line 78... Line 78...
78
 
78
 
Line 79... Line 79...
79
		$normal = false;;
79
		$normal = false;;
80
		
80
		
81
		if(isset($_GET[BAZ_VARIABLE_ACTION])) {
81
		if(isset($_GET[BAZ_VARIABLE_ACTION]) && !(isset($_GET[BAZ_VARIABLE_VALIDATION]) && ($_GET[BAZ_VARIABLE_VALIDATION] == 0))) { 
82
			$normal = false;
82
			$normal = false;
83
		}
83
		}
84
		else {
84
		else {
Line 120... Line 120...
120
		if(!$normal) {
120
		if(!$normal) {
121
			$html = afficherContenuCorps();
121
			$html = afficherContenuCorps();
122
		} else {
122
		} else {
123
			$html = "";
123
			$html = "";
124
		}
124
		}
-
 
125
		
-
 
126
		if(isset($_GET[BAZ_VARIABLE_VALIDATION]) && ($_GET[BAZ_VARIABLE_VALIDATION] == 0)) { 
-
 
127
		
-
 
128
			return $html;
-
 
129
			exit;
-
 
130
		}
Line 125... Line 131...
125
 
131
 
Line 126... Line 132...
126
	}
132
	}
127
	
133