summaryrefslogtreecommitdiff
path: root/actions/register.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-02-11 21:41:56 -0800
committerZach Copley <zach@controlyourself.ca>2009-02-11 21:41:56 -0800
commit9f035e2847e0d119ca3d70e02df6f4fa73ca64c3 (patch)
tree518d2eafdea2747ca3210595d34625d03f85c479 /actions/register.php
parent9d07032334043625a5aa3243d911bdc1c77a7a9c (diff)
Code to handle PEAR_Errors raised by DB_DataObject that are bubbling
up, but are actually expected and can safely be ignored.
Diffstat (limited to 'actions/register.php')
-rw-r--r--actions/register.php23
1 files changed, 22 insertions, 1 deletions
diff --git a/actions/register.php b/actions/register.php
index 5d7a8ce69..853bd0cf6 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -223,10 +223,31 @@ class RegisterAction extends Action
*/
function nicknameExists($nickname)
- {
+ {
$user = User::staticGet('nickname', $nickname);
return ($user !== false);
}
+
+ /**
+ * Check old fashioned PEAR_Error msgs coming from DB_DataObject
+ *
+ * In this case nickname and email don't exist in the DB yet,
+ * so DB_DataObject throws an error. Overrided from Action.
+ *
+ * @param PEAR_Error
+ *
+ * @return nothing
+ */
+
+ function checkDB_DataObjectError($error) {
+ if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) {
+
+ // Do nothing.
+
+ } else {
+ parent::checkDB_DataObjectError($error);
+ }
+ }
/**
* Does the given email address already exist?