You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2014/09/29 18:17:58 UTC

[27/27] git commit: [#7657] log verified email addr instead of its _id

[#7657] log verified email addr instead of its _id


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/69fe0fa7
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/69fe0fa7
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/69fe0fa7

Branch: refs/heads/db/7657
Commit: 69fe0fa7c323f6aa68e8f247e2db73aed7d49224
Parents: 4869d52
Author: Dave Brondsema <db...@slashdotmedia.com>
Authored: Mon Sep 29 16:08:02 2014 +0000
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Mon Sep 29 16:08:02 2014 +0000

----------------------------------------------------------------------
 Allura/allura/controllers/auth.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/69fe0fa7/Allura/allura/controllers/auth.py
----------------------------------------------------------------------
diff --git a/Allura/allura/controllers/auth.py b/Allura/allura/controllers/auth.py
index 4d2fb7c..d93e7a8 100644
--- a/Allura/allura/controllers/auth.py
+++ b/Allura/allura/controllers/auth.py
@@ -253,7 +253,7 @@ class AuthController(BaseController):
             })
 
             flash('Email address confirmed')
-            h.auditlog_user('Email address verified: %s', addr._id, user=addr.claimed_by_user())
+            h.auditlog_user('Email address verified: %s', addr.email, user=addr.claimed_by_user())
         else:
             flash('Unknown verification link', 'error')