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

(-)a/serials/serials-edit.pl (-3 / +2 lines)
Lines 209-218 if ( $op and $op eq 'cud-serialchangestatus' ) { Link Here
209
        my ( $plan_date, $pub_date );
209
        my ( $plan_date, $pub_date );
210
210
211
        if ( defined $planneddates[$i] && $planneddates[$i] ne 'XXX' ) {
211
        if ( defined $planneddates[$i] && $planneddates[$i] ne 'XXX' ) {
212
            $plan_date = $planneddates[$i];
212
            $plan_date = $planneddates[$i] || $today;
213
        }
213
        }
214
        if ( defined $publisheddates[$i] && $publisheddates[$i] ne 'XXX' ) {
214
        if ( defined $publisheddates[$i] && $publisheddates[$i] ne 'XXX' ) {
215
            $pub_date = $publisheddates[$i];
215
            $pub_date = $publisheddates[$i] || $today;
216
        }
216
        }
217
217
218
        if ( $serialids[$i] && $serialids[$i] eq 'NEW' ) {
218
        if ( $serialids[$i] && $serialids[$i] eq 'NEW' ) {
219
- 

Return to bug 36466