Skip to content

Commit

Permalink
2.11.14: Patch bug in conference-room-lookup.php
Browse files Browse the repository at this point in the history
  • Loading branch information
webpwnized committed May 17, 2024
1 parent 4b3850e commit b517829
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/conference-room-lookup.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ function encodeForLDAP(/*string*/ $pString) {
try{
require_once(__SITE_ROOT__ . '/includes/ldap-config.inc');

$ldapconn=ldap_connect(LDAP_HOST, LDAP_PORT);
$ldapconn = ldap_connect("ldap://" . LDAP_HOST . ":" . LDAP_PORT);
ldap_set_option($ldapconn, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_bind($ldapconn, LDAP_BIND_DN, LDAP_BIND_PASSWORD);

Expand Down
2 changes: 1 addition & 1 deletion src/includes/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* ------------------------------------------
* @VERSION
* ------------------------------------------*/
$C_VERSION = "2.11.13";
$C_VERSION = "2.11.14";
$C_VERSION_STRING = "Version: " . $C_VERSION;
$C_MAX_HINT_LEVEL = 1;

Expand Down

0 comments on commit b517829

Please sign in to comment.