mirror of
https://github.com/php/php-src.git
synced 2024-11-23 01:44:06 +08:00
Merge branch 'PHP-8.4'
* PHP-8.4: Skip tests if ldap_set_rebind_proc() is not available
This commit is contained in:
commit
59fe79fb45
@ -6,7 +6,10 @@ Patrick Allaert <patrickallaert@php.net>
|
||||
--EXTENSIONS--
|
||||
ldap
|
||||
--SKIPIF--
|
||||
<?php require_once('skipifbindfailure.inc'); ?>
|
||||
<?php
|
||||
if (!function_exists('ldap_set_rebind_proc')) die("skip ldap_set_rebind_proc() not available");
|
||||
require_once('skipifbindfailure.inc');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
require "connect.inc";
|
||||
|
@ -6,7 +6,10 @@ Patrick Allaert <patrickallaert@php.net>
|
||||
--EXTENSIONS--
|
||||
ldap
|
||||
--SKIPIF--
|
||||
<?php require_once('skipifbindfailure.inc'); ?>
|
||||
<?php
|
||||
if (!function_exists('ldap_set_rebind_proc')) die("skip ldap_set_rebind_proc() not available");
|
||||
require_once('skipifbindfailure.inc');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
require "connect.inc";
|
||||
|
Loading…
Reference in New Issue
Block a user