projects
/
debbugs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
14a92e3
)
* allow the location to be undef; assume that such a bug is unarchived
author
Don Armstrong
<don@donarmstrong.com>
Sat, 9 Aug 2008 18:30:30 +0000
(11:30 -0700)
committer
Don Armstrong
<don@donarmstrong.com>
Sat, 9 Aug 2008 18:30:30 +0000
(11:30 -0700)
Debbugs/Status.pm
patch
|
blob
|
history
diff --git
a/Debbugs/Status.pm
b/Debbugs/Status.pm
index 1a5e7aeea6fe3d5ad4b01e5f5a8eb88502b22ab1..44eff9ba212b13be096c5564a125fce8e5786efb 100644
(file)
--- a/
Debbugs/Status.pm
+++ b/
Debbugs/Status.pm
@@
-251,7
+251,7
@@
sub read_bug{
# Add log last modified time
$data{log_modified} = (stat($log))[9];
$data{location} = $location;
- $data{archived} = $location eq 'archive';
+ $data{archived} =
defined($location) and
$location eq 'archive';
$data{bug_num} = $param{bug};
return \%data;