Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 789 → Rev 790

/trunk/plugins/viathinksoft/publicPages/091_forgot_password/OIDplusPagePublicForgotPassword.class.php
154,7 → 154,7
 
private function getForgotPasswordText($email) {
$res = OIDplus::db()->query("select * from ###ra where email = ?", array($email));
if ($res->num_rows() == 0) {
if (!$res->any()) {
throw new OIDplusException(_L('This RA does not exist.'));
}