summaryrefslogtreecommitdiffstats
path: root/lib/App/Hiveminder/Command/Decline.pm
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2008-05-09 04:23:41 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2008-05-09 04:23:41 -0500
commit6fdf4cf08d6be3f99979c09d391bc091c52bc9fb (patch)
tree7576116a9cd3062b454a502ca0ff4b1dd0ac962a /lib/App/Hiveminder/Command/Decline.pm
parent5a43cf961939e42df2defbda0cf60ad4550b2cd7 (diff)
downloadapp-hiveminder-6fdf4cf08d6be3f99979c09d391bc091c52bc9fb.tar.gz
app-hiveminder-6fdf4cf08d6be3f99979c09d391bc091c52bc9fb.zip
some more forgotten argumentsHEADmaster
Diffstat (limited to 'lib/App/Hiveminder/Command/Decline.pm')
-rw-r--r--lib/App/Hiveminder/Command/Decline.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/App/Hiveminder/Command/Decline.pm b/lib/App/Hiveminder/Command/Decline.pm
index 7ed6e70..7f09755 100644
--- a/lib/App/Hiveminder/Command/Decline.pm
+++ b/lib/App/Hiveminder/Command/Decline.pm
@@ -21,7 +21,7 @@ sub command {
my $updated_task = $self->hm->update_task($task, accepted => 0);
# we get a task hash with each field undef if it succeeds
if (!defined $updated_task->{id}) {
- $ret .= "Declined " . display_tasks($task) . "\n";
+ $ret .= "Declined " . display_tasks($self->hm, $task) . "\n";
}
}