Subversion Repositories eFlore/Applications.cel

Rev

Rev 2251 | Rev 2253 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2251 Rev 2252
Line 144... Line 144...
144
			case 'pdf':
144
			case 'pdf':
145
				$limite = 300;
145
				$limite = 300;
146
				break;
146
				break;
147
		}
147
		}
Line -... Line 148...
-
 
148
		
-
 
149
		$limite = floor($limite * $facteur_reduction);
-
 
150
		// précaution pour les données baseflor qui semblent très difficile à exporter par plus de 10000
-
 
151
		$limite = (in_array('baseflor', $colonnes) && $limite > 10000) ? 10000 : $limite;
148
 
152
 
149
		return floor($limite * $facteur_reduction);
153
		return floor($limite * $facteur_reduction);
Line 150... Line 154...
150
	}
154
	}
151
	
155