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

(-)a/Koha/Item.pm (-2 / +3 lines)
Lines 148-154 sub store { Link Here
148
            $self->permanent_location( $self->location );
148
            $self->permanent_location( $self->location );
149
        }
149
        }
150
150
151
        $self->timestamp(undef) if $self->timestamp; # Maybe move this to Koha::Object->store?
151
        if ( $self->timestamp ) {
152
            $self->timestamp(dt_from_string); # Maybe move this to Koha::Object->store?
153
        }
152
154
153
        C4::Biblio::ModZebra( $self->biblionumber, "specialUpdate", "biblioserver" );
155
        C4::Biblio::ModZebra( $self->biblionumber, "specialUpdate", "biblioserver" );
154
156
155
- 

Return to bug 23463