Changeset 2273

Show
Ignore:
Timestamp:
05/08/08 00:51:31 (19 months ago)
Author:
bchoate
Message:

Applied patch for start/end variable assignment to avoid unbalanced hash error. BugId:79542 Thanks, Jay.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/release-38/lib/MT/WeblogPublisher.pm

    r2271 r2273  
    833833        $at  ||= $finfo->archive_type; 
    834834        if ( $finfo->startdate ) { 
    835             if ( my ( $start, $end ) = $archiver->date_range($finfo->startdate) ) { 
     835            if ( ( $start, $end ) = $archiver->date_range($finfo->startdate) ) { 
    836836                $args{StartDate} = $start; 
    837837                $args{EndDate}   = $end;