From 6a766ac59de6e28e6dd999de8673c13fe538ad62 Mon Sep 17 00:00:00 2001 From: dave Date: Tue, 12 Feb 2008 01:11:21 +0000 Subject: [PATCH] - fix copy/paste error in the tour annealer --- admin/tours_sa.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/tours_sa.php b/admin/tours_sa.php index b5dfe9f8..31f3b33b 100644 --- a/admin/tours_sa.php +++ b/admin/tours_sa.php @@ -144,7 +144,7 @@ function tour_cost_function($annealer, $bucket_id, $ids) /* Check for student below/above grade range */ if($s['grade'] < $t['grade_min']) $cost += 15; - if($s['grade'] > $t['grade_min']) $cost += 25; + if($s['grade'] > $t['grade_max']) $cost += 25; /* Record the school */ $schools[$s['schools_id']]++;