aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bugzilla.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/bugzilla.rb b/bugzilla.rb
index dec329e..f39f7a9 100644
--- a/bugzilla.rb
+++ b/bugzilla.rb
@@ -837,11 +837,12 @@ plugin.map 'bug :zilla :number',
plugin.map 'archstats :zilla :status :reso',
:action => 'archstats',
:requirements => {
- :status => /^[\w,]+$/,
- :resolution => /^[\w,]+$/,
+ :status => STATUS_INPUT_N,
+ :resolution => RESO_INPUT_N,
:zilla => /^[^ ]+$/
},
:defaults => {
+ :zilla => nil,
:status => nil,
:resolution => nil,
},