--- loncom/interface/loncoursedata.pm 2006/05/05 20:03:54 1.167 +++ loncom/interface/loncoursedata.pm 2006/05/05 21:35:31 1.168 @@ -1,6 +1,6 @@ # The LearningOnline Network with CAPA # -# $Id: loncoursedata.pm,v 1.167 2006/05/05 20:03:54 raeburn Exp $ +# $Id: loncoursedata.pm,v 1.168 2006/05/05 21:35:31 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -2599,7 +2599,7 @@ sub count_stats { $limit .= ' AND '.$enrollment_limits; } if ($group_limits) { - $limit .= $group_limits; + $limit .= ' AND '.$group_limits; } $request .= $limit.' GROUP BY a.student_id'; # &Apache::lonnet::logthis('request = '.$/.$request); @@ -2711,7 +2711,7 @@ sub get_response_data { $limit .= ' AND '.$enrollment_requirements; } if (defined($group_limits)) { - $limit .= $group_limits; + $limit .= ' AND '.$group_limits; } $request .= $limit.' ORDER BY b.timestamp'; # &Apache::lonnet::logthis("request =\n".$request);