Diff for /loncom/interface/loncoursedata.pm between versions 1.167 and 1.168

version 1.167, 2006/05/05 20:03:54 version 1.168, 2006/05/05 21:35:31
Line 2599  sub count_stats { Line 2599  sub count_stats {
         $limit .= ' AND '.$enrollment_limits;          $limit .= ' AND '.$enrollment_limits;
     }      }
     if ($group_limits) {      if ($group_limits) {
         $limit .= $group_limits;          $limit .= ' AND '.$group_limits;
     }      }
     $request .= $limit.' GROUP BY a.student_id';      $request .= $limit.' GROUP BY a.student_id';
 #    &Apache::lonnet::logthis('request = '.$/.$request);  #    &Apache::lonnet::logthis('request = '.$/.$request);
Line 2711  sub get_response_data { Line 2711  sub get_response_data {
         $limit .= ' AND '.$enrollment_requirements;          $limit .= ' AND '.$enrollment_requirements;
     }      }
     if (defined($group_limits)) {      if (defined($group_limits)) {
         $limit .= $group_limits;          $limit .= ' AND '.$group_limits;
     }      }
     $request .= $limit.' ORDER BY b.timestamp';      $request .= $limit.' ORDER BY b.timestamp';
 #    &Apache::lonnet::logthis("request =\n".$request);  #    &Apache::lonnet::logthis("request =\n".$request);

Removed from v.1.167  
changed lines
  Added in v.1.168


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>