-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
English fixes and minor code tidyup #175
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for cleaning up a lot of tiny details. I apprechiate that very much!
Though two things arose where I'd be really happy about your feedback.
@@ -65,7 +65,7 @@ public function bind() | |||
} | |||
|
|||
if ($allFailed) { | |||
throw new AuthLDAP_Exception('No bind successfull'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This wording was used deliberately as the library tries multiple binds and none of these is successful.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok I misunderstood the context, 'No bind successful' is a viable alternative :)
@@ -30,9 +30,9 @@ | |||
*/ | |||
?><div class="wrap"> | |||
<?php if (! extension_loaded('ldap')) : ?> | |||
<div class="error"><strong>Caveat:</strong> The LDAP-extension is not loaded! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you remove the strong marking here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was more of a personal opinion, the alert is already inside a
No description provided.