View | Details | Raw Unified | Return to bug 20765
Collapse All | Expand All

(-)a/labels/label-item-search.pl (-3 / +2 lines)
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
- 

Return to bug 20765