Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1480 Rev 1481
Line 738... Line 738...
738
		if($next_offset < $total) {
738
		if($next_offset < $total) {
739
			$next_url = $url_service_sans_slash . '?' . http_build_query(array_merge($params_a_plat, array('navigation.depart' => $next_offset)));
739
			$next_url = $url_service_sans_slash . '?' . http_build_query(array_merge($params_a_plat, array('navigation.depart' => $next_offset)));
740
		}
740
		}
Line 741... Line 741...
741
 
741
 
742
		$prev_offset = $params['navigation.depart'] - $params['navigation.limite'];
742
		$prev_offset = $params['navigation.depart'] - $params['navigation.limite'];
743
		if($prev_offset > 0) {
743
		if($prev_offset >= 0) {
744
			$prev_url = $url_service_sans_slash . '?' . http_build_query(array_merge($params_a_plat, array('navigation.depart' => $prev_offset)));
744
			$prev_url = $url_service_sans_slash . '?' . http_build_query(array_merge($params_a_plat, array('navigation.depart' => $prev_offset)));
Line 745... Line 745...
745
		}
745
		}
746
 
746