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

(-)a/C4/Accounts.pm (-2 / +1 lines)
Lines 276-282 sub getcredits { Link Here
276
	  AND timestamp >=TIMESTAMP(?) AND timestamp < TIMESTAMP(?)"
276
	  AND timestamp >=TIMESTAMP(?) AND timestamp < TIMESTAMP(?)"
277
      );  
277
      );  
278
278
279
    $sth->execute( $date, $date2 );                                                                                                              
279
    $sth->execute( $date, $date2 );
280
    my @results;          
280
    my @results;          
281
    while ( my $data = $sth->fetchrow_hashref ) {
281
    while ( my $data = $sth->fetchrow_hashref ) {
282
		$data->{'date'} = $data->{'timestamp'};
282
		$data->{'date'} = $data->{'timestamp'};
283
- 

Return to bug 18584