Skip to content

Commit

Permalink
Fix syntax error (Bug #13464).
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Aug 22, 2014
1 parent 2b93fe8 commit 4668e7e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions passwd/docs/CHANGES
Expand Up @@ -2,6 +2,7 @@
v5.0.2-git
----------

[jan] Fix syntax error in HTTP driver (Bug #13464).
[mms] Re-add 'userdn' hook.
[jan] Update Danish translation (Erling Preben Hansen <erling@eph.dk>).
[mms] Fix usage of 'query_lookup' and 'query_modify' backend parameters
Expand Down
2 changes: 1 addition & 1 deletion passwd/lib/Driver/Http.php
Expand Up @@ -57,7 +57,7 @@ protected function _changePassword($user, $oldpass, $newpass)
if (strpos($body, $this->_params['eval_results']['badUser'])) {
throw new Passwd_Exception(_("The username could not be found."));
}
if (!strpos(body, $this->_params['eval_results']['success'])) {
if (!strpos($body, $this->_params['eval_results']['success'])) {
throw new Passwd_Exception(_("Your password could not be changed."));
}
}
Expand Down
2 changes: 2 additions & 0 deletions passwd/package.xml
Expand Up @@ -28,6 +28,7 @@
</stability>
<license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
<notes>
* [jan] Fix syntax error in HTTP driver (Bug #13464).
* [mms] Re-add &apos;userdn&apos; hook.
* [jan] Update Danish translation (Erling Preben Hansen &lt;erling@eph.dk&gt;).
* [mms] Fix usage of &apos;query_lookup&apos; and &apos;query_modify&apos; backend parameters (Michael Cramer &lt;michael@bigmichi1.de&gt;).
Expand Down Expand Up @@ -710,6 +711,7 @@
<date>2013-08-27</date>
<license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
<notes>
* [jan] Fix syntax error in HTTP driver (Bug #13464).
* [mms] Re-add &apos;userdn&apos; hook.
* [jan] Update Danish translation (Erling Preben Hansen &lt;erling@eph.dk&gt;).
* [mms] Fix usage of &apos;query_lookup&apos; and &apos;query_modify&apos; backend parameters (Michael Cramer &lt;michael@bigmichi1.de&gt;).
Expand Down

0 comments on commit 4668e7e

Please sign in to comment.