Fedora-Bugzilla
view release on metacpan or search on metacpan
lib/Fedora/Bugzilla/Bug.pm view on Meta::CPAN
### $meta
# FIXME not exactly sure...
return unless $meta;
$self->dirty(1);
$self->_to_update($meta->name);
}
# update the dirty values in bugzilla; mark clean and purge old data
sub update {
my $self = shift @_;
# only if we have something to update...
return if not $self->dirty;
# force stringification
my %updates =
#map { my $x = $self->$_ || q{}; $_ => "$x" } $self->_update_these;
map { my $x = $self->$_ || q{}; $_ => blessed $x ? "$x" : $x } $self->_update_these;
( run in 0.229 second using v1.01-cache-2.11-cpan-4d4bc49f3ae )