Diff for /loncom/interface/lonsearchcat.pm between versions 1.239 and 1.240

version 1.239, 2005/03/16 22:46:24 version 1.240, 2005/03/21 21:01:15
Line 1555  sub parse_domain_restrictions { Line 1555  sub parse_domain_restrictions {
     # $ENV{'form.domains'} can be either a scalar or an array reference.      # $ENV{'form.domains'} can be either a scalar or an array reference.
     # We need an array.      # We need an array.
     if (! exists($ENV{'form.domains'}) || $ENV{'form.domains'} eq '') {      if (! exists($ENV{'form.domains'}) || $ENV{'form.domains'} eq '') {
         return (undef,'');          return (undef,'',undef);
     }      }
     my @allowed_domains;      my @allowed_domains;
     if (ref($ENV{'form.domains'})) {      if (ref($ENV{'form.domains'})) {
Line 1645  sub parse_basic_search { Line 1645  sub parse_basic_search {
         return;          return;
     }      }
     push(@Queries,$SQLQuery);      push(@Queries,$SQLQuery);
     push(@Queries,$domain_sql_restriction);      if (defined($domain_sql_restriction) && $domain_sql_restriction ne '') {
           push(@Queries,$domain_sql_restriction);
       }
     #foreach my $q (@Queries) {      #foreach my $q (@Queries) {
     #    &Apache::lonnet::logthis('    '.$q);      #    &Apache::lonnet::logthis('    '.$q);
     #}      #}
Line 2444  END Line 2446  END
 <table>  <table>
 <tr><th>Status</th><th>Total Matches</th><th>Time Remaining</th><th></th></tr>  <tr><th>Status</th><th>Total Matches</th><th>Time Remaining</th><th></th></tr>
 <tr>  <tr>
 <td><input type="text" name="status"  value="" size="30" /></td>  <td><input type="text" name="status"  value="" size="50" /></td>
 <td><input type="text" name="count"   value="" size="10" /></td>  <td><input type="text" name="count"   value="" size="10" /></td>
 <td><input type="text" name="seconds" value="" size="8" /></td>  <td><input type="text" name="seconds" value="" size="8" /></td>
 <td>$revise</td>  <td>$revise</td>

Removed from v.1.239  
changed lines
  Added in v.1.240


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