Commit 91874cde authored by Dietmar Maurer's avatar Dietmar Maurer

fix bug #205

parent 2a2777b0
...@@ -87,7 +87,7 @@ __PACKAGE__->register_method({ ...@@ -87,7 +87,7 @@ __PACKAGE__->register_method({
my $status = $5; my $status = $5;
if ((my $task = PVE::Tools::upid_decode($upid, 1))) { if ((my $task = PVE::Tools::upid_decode($upid, 1))) {
return if $userfilter && $task->{user} !~ m/\Q$userfilter\E/i; return if $userfilter && $task->{user} !~ m/\Q$userfilter\E/i;
next if !($auditor || $user eq $task->{user}); return if !($auditor || $user eq $task->{user});
return if $errors && $status && $status eq 'OK'; return if $errors && $status && $status eq 'OK';
......
...@@ -5,6 +5,8 @@ pve-manager (2.2-22) unstable; urgency=low ...@@ -5,6 +5,8 @@ pve-manager (2.2-22) unstable; urgency=low
* update openvz appliance list * update openvz appliance list
* add win8 to OS type selector * add win8 to OS type selector
* fix bug #205
-- Proxmox Support Team <support@proxmox.com> Fri, 12 Oct 2012 06:07:12 +0200 -- Proxmox Support Team <support@proxmox.com> Fri, 12 Oct 2012 06:07:12 +0200
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment