mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
Merge branch 'PHP-5.3' into PHP-5.4
* PHP-5.3: Fix bug 61717 ext\ldap\tests\ldap_sasl_bind_basic.phpt fails
This commit is contained in:
commit
1a44faf264
1 changed files with 7 additions and 0 deletions
|
@ -6,6 +6,13 @@ Patrick Allaert <patrickallaert@php.net>
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php require_once('skipif.inc'); ?>
|
<?php require_once('skipif.inc'); ?>
|
||||||
<?php if (!function_exists("ldap_sasl_bind")) die("skip LDAP extension not compiled with SASL support"); ?>
|
<?php if (!function_exists("ldap_sasl_bind")) die("skip LDAP extension not compiled with SASL support"); ?>
|
||||||
|
<?php
|
||||||
|
require "connect.inc";
|
||||||
|
$link = fsockopen($host, $port);
|
||||||
|
if (!$link) {
|
||||||
|
die("skip no server listening");
|
||||||
|
}
|
||||||
|
?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
require "connect.inc";
|
require "connect.inc";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue