Indefero

Indefero Commit Details


Date:2009-07-02 13:04:46 (15 years 5 months ago)
Author:Loic d'Anterroches
Branch:develop, feature-issue_links, feature.better-home, feature.content-md5, feature.diff-whitespace, feature.download-md5, feature.issue-links, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, master, release-1.1, release-1.2, release-1.3
Commit:32507085b40b2aa9cef30212f84dbeea1e830e22
Parents: c488278ce1bac2a6adc83a77395b776126dbe212
Message:Added another level of check on the reset password key.

Changes:

File differences

src/IDF/Form/PasswordInputKey.php
9595
9696
9797
98
98
99
100
101
102
99103
100104
return false;
}
$cr = new Pluf_Crypt(md5(Pluf::f('secret_key')));
return split(':', $cr->decrypt($encrypted), 3);
$f = split(':', $cr->decrypt($encrypted), 3);
if (count($f) != 3) {
return false;
}
return $f;
}
}

Archive Download the corresponding diff file

Page rendered in 0.07458s using 13 queries.