Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1468 Rev 1513
Line 133... Line 133...
133
		
133
		
134
        $where = array();
134
        $where = array();
135
        if(@$this->parametres['masque.protocole']) $where[] = 'ds.ce_protocole = ' . intval($this->parametres['masque.protocole']);
135
        if(@$this->parametres['masque.protocole']) $where[] = 'ds.ce_protocole = ' . intval($this->parametres['masque.protocole']);
Line 136... Line 136...
136
        if(@intval($this->parametres['masque.valeur_vote_min'])) $where[] = 'moyenne >= ' . intval($this->parametres['masque.valeur_vote_min']);
136
        if(@intval($this->parametres['masque.valeur_vote_min'])) $where[] = 'moyenne >= ' . intval($this->parametres['masque.valeur_vote_min']);
137
 
137
 
Line 138... Line 138...
138
        $limite = min(intval($this->parametres['navigation.limite']), 1000);
138
        $limite = @min(intval($this->parametres['navigation.limite']), 1000);
139
        $limite = $limite ? $limite : 10; // 0 => 10
139
        $limite = $limite ? $limite : 10; // 0 => 10
140
 
140