| Lines 88-94
          if ( $op eq "do_search" ) {
      
      
        Link Here | 
        
          | 88 |                     "acqdate(" . $datefrom . '-)'; | 88 |                     "acqdate(" . $datefrom . '-)'; | 
        
          | 89 |             } else { | 89 |             } else { | 
        
          | 90 |                 $ccl_query .= ' and ' if $ccl_textbox; | 90 |                 $ccl_query .= ' and ' if $ccl_textbox; | 
          
            
              | 91 |                 $ccl_query .= "acqdate,st-date-normalized,ge=" . $datefrom; | 91 |                 $ccl_query .= "acqdate,ge,st-date-normalized=" . $datefrom; | 
        
          | 92 |             } | 92 |             } | 
        
          | 93 |         } | 93 |         } | 
        
          | 94 |     } | 94 |     } | 
  
    | Lines 102-108
          if ( $op eq "do_search" ) {
      
      
        Link Here | 
        
          | 102 |                 $ccl_query .= "acqdate(-" . $dateto . ')'; | 102 |                 $ccl_query .= "acqdate(-" . $dateto . ')'; | 
        
          | 103 |             } else { | 103 |             } else { | 
        
          | 104 |                 $ccl_query .= ' and ' if ( $ccl_textbox || $datefrom ); | 104 |                 $ccl_query .= ' and ' if ( $ccl_textbox || $datefrom ); | 
          
            
              | 105 |                 $ccl_query .= "acqdate,st-date-normalized,le=" . $dateto; | 105 |                 $ccl_query .= "acqdate,le,st-date-normalized=" . $dateto; | 
        
          | 106 |             } | 106 |             } | 
        
          | 107 |         } | 107 |         } | 
        
          | 108 |     } | 108 |     } | 
            
              | 109 | -  |  |  |