diff options
Diffstat (limited to 'Bugzilla/Group.pm')
-rw-r--r-- | Bugzilla/Group.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Bugzilla/Group.pm b/Bugzilla/Group.pm index a8786034b..eef0a70cd 100644 --- a/Bugzilla/Group.pm +++ b/Bugzilla/Group.pm @@ -389,8 +389,11 @@ sub create { my ($params) = @_; my $dbh = Bugzilla->dbh; - print get_text('install_group_create', { name => $params->{name} }) . "\n" - if Bugzilla->usage_mode == USAGE_MODE_CMDLINE; + my $silently = delete $params->{silently}; + if (Bugzilla->usage_mode == USAGE_MODE_CMDLINE and !$silently) { + print get_text('install_group_create', { name => $params->{name} }), + "\n"; + } $dbh->bz_start_transaction(); |