Module: appdb Branch: master Commit: 72f6981f0a2bf0b457d9b3bac952e30661782c01 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=72f6981f0a2bf0b457d9b3bac...
Author: Alexander Nicolaysen Sørnes alex@thehandofagony.com Date: Sun Nov 15 16:08:59 2009 +0100
user: Fix a typo in get_notify_email_address_list
---
include/user.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/user.php b/include/user.php index 5edc355..36101af 100644 --- a/include/user.php +++ b/include/user.php @@ -581,7 +581,7 @@ class User { // if we didn't find this entry in the $aUserId // array then we should add it if the admin has // enabled global emails - $oAdmin = new user($oRow->userId); + $oAdmin = new user($oRow->userid); if($i === false && ($oAdmin->getPref('disable_global_emails','no') == 'no')) $aUserId[] = $oRow->userid; }