/[SVNBrowser]/trunk/lib/SVNBrowser/Action/Filter.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/SVNBrowser/Action/Filter.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 40 by dpavlin, Sun Dec 10 19:00:33 2006 UTC revision 41 by dpavlin, Mon Dec 18 10:51:50 2006 UTC
# Line 94  sub take_action { Line 94  sub take_action {
94          }          }
95    
96          if ( my $from_date = $self->argument_value('from_date') ) {          if ( my $from_date = $self->argument_value('from_date') ) {
97                  $revisions->limit( column => 'commit_date', operator => '>=', value => $from_date, entry_aggregator => 'AND' );                  $revisions->limit( column => 'commit_date', operator => '>=', value => $from_date, entry_aggregator => 'AND', case_sensitive => 1 );
98          }          }
99    
100          if ( my $to_date = $self->argument_value('to_date') ) {          if ( my $to_date = $self->argument_value('to_date') ) {
101                  $revisions->limit( column => 'commit_date', operator => '>=', value => $to_date, entry_aggregator => 'AND' );                  $revisions->limit( column => 'commit_date', operator => '<=', value => $to_date, entry_aggregator => 'AND', case_sensitive => 1 );
102          }          }
103    
104          if ( my $search = $self->argument_value('search') ) {          if ( my $search = $self->argument_value('search') ) {

Legend:
Removed from v.40  
changed lines
  Added in v.41

  ViewVC Help
Powered by ViewVC 1.1.26