Skip to content

Commit

Permalink
Fix variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Oct 14, 2013
1 parent 2dfc534 commit 853ba99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nag/lib/CompleteTask.php
Expand Up @@ -22,7 +22,7 @@ public function result($task, $tasklist)
if ($task->completed) {
$result = array('data' => 'complete');
$notification->push(sprintf(_("Completed %s."), $task->name), 'horde.success');
} elseif (!$wasComplete) {
} elseif (!$wasCompleted) {
$result = array('data' => 'incomplete');
$notification->push(sprintf(_("%s is still incomplete."), $task->name), 'horde.success');
} else {
Expand Down

0 comments on commit 853ba99

Please sign in to comment.