Hi Paul,

Can you please give a more detailed explanation of what this patch is
fixing, what the problem was, etc.? Do you have a bug number?

Thanks,

Josh


On Fri, Jun 20, 2008 at 12:34:43PM +0200, [EMAIL PROTECTED] wrote:
> From: paul <[EMAIL PROTECTED]>
> 
> ---
>  C4/Acquisition.pm |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/C4/Acquisition.pm b/C4/Acquisition.pm
> index c0565a0..20b9477 100644
> --- a/C4/Acquisition.pm
> +++ b/C4/Acquisition.pm
> @@ -1169,12 +1169,12 @@ sub GetHistory {
>          }            
>  
>          if ( defined $from_placed_on ) {
> -            $query .= " AND creationdate > ? ";
> +            $query .= " AND creationdate >= ? ";
>              push @query_params, $from_placed_on;
>          }
>  
>          if ( defined $to_placed_on ) {
> -            $query .= " AND creationdate < ? ";
> +            $query .= " AND creationdate <= ? ";
>              push @query_params, $to_placed_on;
>          }
>  
> -- 
> 1.5.3.2
> 
> _______________________________________________
> Koha-patches mailing list
> [email protected]
> http://lists.koha.org/mailman/listinfo/koha-patches
_______________________________________________
Koha-patches mailing list
[email protected]
http://lists.koha.org/mailman/listinfo/koha-patches

Reply via email to