summaryrefslogtreecommitdiff
path: root/actions/emailsettings.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/emailsettings.php
parent033503dc84c5a31408345f61cd6c8ca79239e25b (diff)
parent3b5fd8fb6bbfa95efe3294ea77ae809dab071f99 (diff)
Merge branch '0.7.x' of git@gitorious.org:laconica/dev into 0.7.x
Diffstat (limited to 'actions/emailsettings.php')
-rw-r--r--actions/emailsettings.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/actions/emailsettings.php b/actions/emailsettings.php
index 0a86aa66d..b84acb214 100644
--- a/actions/emailsettings.php
+++ b/actions/emailsettings.php
@@ -487,26 +487,4 @@ class EmailsettingsAction extends AccountSettingsAction
return $other->id != $user->id;
}
}
-
- /**
- * Handle old fashioned PEAR_Error msgs coming from DB_DataObject
- *
- * In this case 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);
- }
- }
-
}