summaryrefslogtreecommitdiff
path: root/modules/notification/helpers
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-08-28 13:47:36 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-08-28 13:47:36 -0700
commit31d63a0d0a27212435a78eb38461320f486b5f95 (patch)
tree68782a88d954e7ae4f0d793b3b2483e720a74beb /modules/notification/helpers
parent1d5262f9c354a8564f05a8a31b915ad479f4d361 (diff)
parent1855642bd169a1cae69cd9efb8da4458ea6e4a3c (diff)
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'modules/notification/helpers')
-rw-r--r--modules/notification/helpers/notification.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/notification/helpers/notification.php b/modules/notification/helpers/notification.php
index 92c40d4f..d95b3060 100644
--- a/modules/notification/helpers/notification.php
+++ b/modules/notification/helpers/notification.php
@@ -153,7 +153,7 @@ class notification {
->where("email", $email)
->find_all();
if ($result->count() == 1) {
- $pending = $result->get();
+ $pending = $result->current();
Sendmail::factory()
->to($email)
->subject($pending->subject)