projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
83f413c
)
fix operator order
author
Michael J. Rubinsky
<mrubinsk@horde.org>
Wed, 26 May 2010 18:13:17 +0000
(14:13 -0400)
committer
Michael J. Rubinsky
<mrubinsk@horde.org>
Wed, 26 May 2010 18:13:17 +0000
(14:13 -0400)
nag/lib/Task.php
patch
|
blob
|
history
diff --git
a/nag/lib/Task.php
b/nag/lib/Task.php
index
bc9101a
..
39c206a
100644
(file)
--- a/
nag/lib/Task.php
+++ b/
nag/lib/Task.php
@@
-1076,7
+1076,7
@@
class Nag_Task {
$this->priority = 3;
}
- if (
$alarm = $message->getReminder(
) && $this->due) {
+ if (
($alarm = $message->getReminder()
) && $this->due) {
$this->alarm = $this->due - $alarm->timestamp();
}