Summary | Missing $ sign in HTTP Driver |
Queue | Passwd |
Queue Version | 5.0.1 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | jan (at) horde (dot) org |
Requester | alex.lanz (at) rolmail (dot) net |
Created | 08/22/2014 (3986 days ago) |
Due | |
Updated | 08/22/2014 (3986 days ago) |
Assigned | |
Resolved | 08/22/2014 (3986 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | 5.0.2 |
Patch | No |
State ⇒ Resolved
Milestone ⇒ 5.0.2
commit 4668e7ed4570bc9c4d1cbc3dccbd0ddf62dc4787
Author: Jan Schneider <jan@horde.org>
Date: Fri Aug 22 12:16:11 2014 +0200
Fix syntax error (
Bug #13464).passwd/docs/CHANGES | 1 +
passwd/lib/Driver/Http.php | 2 +-
passwd/package.xml | 2 ++
3 files changed, 4 insertions(+), 1 deletions(-)
http://github.com/horde/horde/commit/4668e7ed4570bc9c4d1cbc3dccbd0ddf62dc4787
commit 5f6555631fd1508157b19365269a420c0cb5a542
Author: Jan Schneider <jan@horde.org>
Date: Fri Aug 22 12:16:11 2014 +0200
Fix syntax error (
Bug #13464).passwd/docs/CHANGES | 1 +
passwd/lib/Driver/Http.php | 2 +-
passwd/package.xml | 2 ++
3 files changed, 4 insertions(+), 1 deletions(-)
http://github.com/horde/horde/commit/5f6555631fd1508157b19365269a420c0cb5a542
Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒
Queue ⇒ Passwd
Summary ⇒ Missing $ sign in HTTP Driver
Type ⇒ Bug
State ⇒ Unconfirmed
almost at the bottom of the file. At the last check the body variable
should be named "$body".
Acutal Code:
if (!strpos(body, $this->_params['eval_results']['success'])) {
throw new Passwd_Exception(_("Your password could not be
changed."));
}
Correct Code:
if (!strpos($body, $this->_params['eval_results']['success'])) {
throw new Passwd_Exception(_("Your password could not be
changed."));
}