From 745a145f0dacc0ef04a43157887d322bf37225eb Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 22 Jun 2008 10:09:41 -0400 Subject: add better debugging darcs-hash:20080622140941-34904-2a0eda21f6a374a9d26107a4bc627fc6de2a7063.gz --- actions/confirmemail.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'actions/confirmemail.php') diff --git a/actions/confirmemail.php b/actions/confirmemail.php index 8052452ae..e69cc6fff 100644 --- a/actions/confirmemail.php +++ b/actions/confirmemail.php @@ -47,21 +47,27 @@ class ConfirmemailAction extends Action { $this->client_error(_t('That email address is already confirmed.')); return; } + $cur->query('BEGIN'); + $orig_user = clone($cur); $cur->email = $confirm_email->email; - common_debug('cur email = "' . $cur->email . '"', __FILE__); $result = $cur->update($orig_user); + if (!$result) { - $this->server_error(_t('Error setting email address.')); + common_log_db_error($cur, 'UPDATE', __FILE__); return; } + $result = $confirm_email->delete(); + if (!$result) { - $this->server_error(_t('Error deleting code.')); + common_log_db_error($confirm_email, 'DELETE', __FILE__); return; } + $cur->query('COMMIT'); + common_show_header(_t('Confirm E-mail Address')); common_element('p', NULL, _t('The email address "') . $cur->email . -- cgit v1.2.3-54-g00ecf