summaryrefslogtreecommitdiff
path: root/actions/register.php
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2009-02-12 22:14:07 +0000
committerSarven Capadisli <csarven@controlyourself.ca>2009-02-12 22:14:07 +0000
commit579f09417bcd80bcf1921ebd8104f648d49413a6 (patch)
treed3e10ebc02b96734066a6ab53b7e3a3842c09415 /actions/register.php
parent033503dc84c5a31408345f61cd6c8ca79239e25b (diff)
parent3b5fd8fb6bbfa95efe3294ea77ae809dab071f99 (diff)
Merge branch '0.7.x' of git@gitorious.org:laconica/dev into 0.7.x
Diffstat (limited to 'actions/register.php')
-rw-r--r--actions/register.php23
1 files changed, 1 insertions, 22 deletions
diff --git a/actions/register.php b/actions/register.php
index aafb54ebb..5d7a8ce69 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -223,31 +223,10 @@ class RegisterAction extends Action
*/
function nicknameExists($nickname)
- {
+ {
$user = User::staticGet('nickname', $nickname);
return ($user !== false);
}
-
- /**
- * Handle 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 handleError($error) {
- if ($error->getCode() == DB_DATAOBJECT_ERROR_NODATA) {
-
- // Do nothing.
-
- } else {
- parent::handleError($error);
- }
- }
/**
* Does the given email address already exist?