]> granicus.if.org Git - php/log
php
23 years agoUpdate Exceptions example.
Sebastian Bergmann [Mon, 14 Jan 2002 12:14:18 +0000 (12:14 +0000)]
Update Exceptions example.

23 years agofixed an error in mbstring caused by confliction with regex.
Rui Hirokawa [Mon, 14 Jan 2002 03:08:40 +0000 (03:08 +0000)]
fixed an error in mbstring caused by confliction with regex.

23 years agoChangeLog update
<changelog@php.net> [Mon, 14 Jan 2002 01:13:37 +0000 (01:13 +0000)]
ChangeLog update

23 years agoNEWS update
<changelog@php.net> [Mon, 14 Jan 2002 01:13:34 +0000 (01:13 +0000)]
NEWS update

23 years agoFixed build in the directory other than $top_srcdir.
Edin Kadribasic [Sun, 13 Jan 2002 23:51:56 +0000 (23:51 +0000)]
Fixed build in the directory other than $top_srcdir.

23 years ago- Change exception handling to use the Java-like catch(MyException $exception)
Andi Gutmans [Sun, 13 Jan 2002 20:21:55 +0000 (20:21 +0000)]
- Change exception handling to use the Java-like catch(MyException $exception)
- semantics. Example:
<?php

class MyException {
function __construct($exception)
{
$this->exception = $exception;
}

function Display()
{
print "MyException: $this->exception\n";
}

}
class MyExceptionFoo extends MyException {
function __construct($exception)
{
$this->exception = $exception;
}
function Display()
{
print "MyException: $this->exception\n";
}
}

try {
throw  new MyExceptionFoo("Hello");
} catch (MyException $exception) {
$exception->Display();
}
?>

23 years agoNew DSN "protcocol(protocol_opts)" format support:
Tomas V.V.Cox [Sun, 13 Jan 2002 18:24:56 +0000 (18:24 +0000)]
New DSN "protcocol(protocol_opts)" format support:
phptype://user:pass@protocol(proto_opts)/database
ex:
pgsql://user@unix()/pear
mysql://user@unix(/path/to/socket)/pear
pgsql://user:pass@word@tcp(somehost:7777)/pear

23 years ago- MFZE1
Andi Gutmans [Sun, 13 Jan 2002 17:51:18 +0000 (17:51 +0000)]
- MFZE1

23 years ago4.1.1 NEWS entry block was missing from the HEAD tree
Rasmus Lerdorf [Sun, 13 Jan 2002 16:50:08 +0000 (16:50 +0000)]
4.1.1 NEWS entry block was missing from the HEAD tree

23 years agofixed some link error of gd's configure.
Rui Hirokawa [Sun, 13 Jan 2002 06:25:18 +0000 (06:25 +0000)]
fixed some link error of gd's configure.

23 years agoThis should fix cli build when running 'make install' directly.
Edin Kadribasic [Sun, 13 Jan 2002 05:26:20 +0000 (05:26 +0000)]
This should fix cli build when running 'make install' directly.

23 years ago - Added xpath_register_ns() function.
Chris Jarecki [Sun, 13 Jan 2002 01:17:34 +0000 (01:17 +0000)]
 - Added xpath_register_ns() function.
@ - Added xpath_register_ns() function.
@   It makes possible to issue XPath queries with namespaces
@   like for example: "//namespace:sampletag" (Chris Jarecki)

23 years agoChangeLog update
<changelog@php.net> [Sun, 13 Jan 2002 01:10:35 +0000 (01:10 +0000)]
ChangeLog update

23 years agoFixed CLI build when the main SAPI is built as a shered library.
Edin Kadribasic [Sat, 12 Jan 2002 22:48:54 +0000 (22:48 +0000)]
Fixed CLI build when the main SAPI is built as a shered library.

23 years agoModified the build system to always build CLI SAPI.
Edin Kadribasic [Sat, 12 Jan 2002 14:51:54 +0000 (14:51 +0000)]
Modified the build system to always build CLI SAPI.

23 years agoMy bad. Left some stray debugging code in previous commit.
Gavin Sherry [Sat, 12 Jan 2002 07:38:35 +0000 (07:38 +0000)]
My bad. Left some stray debugging code in previous commit.

23 years agoSee the update to dba_db3.c
Gavin Sherry [Sat, 12 Jan 2002 07:23:35 +0000 (07:23 +0000)]
See the update to dba_db3.c

23 years agoThis fixes the notorious "mode 'c' fails" bug (see bugs - 10380, 10798, 11732). The...
Gavin Sherry [Sat, 12 Jan 2002 07:22:27 +0000 (07:22 +0000)]
This fixes the notorious "mode 'c' fails" bug (see bugs - 10380, 10798, 11732). The bug originates from the fact that mode "c" for db3 sets 'type' to DB_UNKNOWN and mode DB_CREATE when the database already exists. The underlying library raises an error at this logical discrepancy: obviously one cannot create a database of unknown type.

23 years agoFixed segfault in imap_bodystruct() when called with an invalid message
Vlad Krupin [Sat, 12 Jan 2002 05:39:07 +0000 (05:39 +0000)]
Fixed segfault in imap_bodystruct() when called with an invalid message
number. Now it fails with a warning instead.

23 years agoChangeLog update
<changelog@php.net> [Sat, 12 Jan 2002 01:11:03 +0000 (01:11 +0000)]
ChangeLog update

23 years agoNEWS update
<changelog@php.net> [Sat, 12 Jan 2002 01:11:00 +0000 (01:11 +0000)]
NEWS update

23 years agoAdded domxml_node_replace_node() function.
Jaroslaw Kolakowski [Fri, 11 Jan 2002 21:15:46 +0000 (21:15 +0000)]
Added domxml_node_replace_node() function.

23 years ago@Added multi-byte enabled regex functions. (Rui)
Rui Hirokawa [Fri, 11 Jan 2002 13:21:09 +0000 (13:21 +0000)]
@Added multi-byte enabled regex functions. (Rui)

23 years ago- mkdir(): made second (mode) parameter optional, default to 0777
Markus Fischer [Fri, 11 Jan 2002 10:44:24 +0000 (10:44 +0000)]
- mkdir(): made second (mode) parameter optional, default to 0777
           switched to zend_parse_parameters().
# Added vim 'noet' setting

23 years ago- Added HTTP::head($url) which sends a "HEAD" HTTP command to a server
Tomas V.V.Cox [Fri, 11 Jan 2002 01:51:24 +0000 (01:51 +0000)]
- Added HTTP::head($url) which sends a "HEAD" HTTP command to a server
  and returns the headers as an associative array
- Call-time pass-by-reference fixes

23 years agoChangeLog update
<changelog@php.net> [Fri, 11 Jan 2002 01:11:10 +0000 (01:11 +0000)]
ChangeLog update

23 years agosubmit a test that will fail due to php bug #14744
Tomas V.V.Cox [Fri, 11 Jan 2002 00:04:55 +0000 (00:04 +0000)]
submit a test that will fail due to php bug #14744

23 years agoAdding functions to get BLOB/CLOB size from a lob_handle.
Frank M. Kromann [Thu, 10 Jan 2002 21:56:18 +0000 (21:56 +0000)]
Adding functions to get BLOB/CLOB size from a lob_handle.
Added descriptions on most protos

23 years agoFix the recursive counting, it was broken for associative or non-sequential
Andrei Zmievski [Thu, 10 Jan 2002 21:31:06 +0000 (21:31 +0000)]
Fix the recursive counting, it was broken for associative or non-sequential
arrays. Also update NEWS file.

23 years ago- Make an E_NOTICE error type show 'Notice' instead of 'Warning'.
Derick Rethans [Thu, 10 Jan 2002 16:00:08 +0000 (16:00 +0000)]
- Make an E_NOTICE error type show 'Notice' instead of 'Warning'.

23 years agoFix startup crash
Yasuo Ohgaki [Thu, 10 Jan 2002 12:08:39 +0000 (12:08 +0000)]
Fix startup crash
# Sascha, thanks for fixing poor patch :)
# mm save handler does not work regardlress of
# save path patch or not for some reason.

23 years ago- Unified error messages.
Markus Fischer [Thu, 10 Jan 2002 09:09:19 +0000 (09:09 +0000)]
- Unified error messages.
- Improved argument handling in dio_fcntl().

23 years agoImproved code for handling PS(save_path)
Sascha Schumann [Thu, 10 Jan 2002 07:37:10 +0000 (07:37 +0000)]
Improved code for handling PS(save_path)

Don't MFH before further testing

23 years agoWs fix
Sascha Schumann [Thu, 10 Jan 2002 07:28:27 +0000 (07:28 +0000)]
Ws fix

23 years ago(PHP touch) Operate on a stack buffer.. no need for allocating newtime
Sascha Schumann [Thu, 10 Jan 2002 07:25:00 +0000 (07:25 +0000)]
(PHP touch) Operate on a stack buffer.. no need for allocating newtime
on the heap.

23 years agoAdd three-parameter touch() which enables users to set
Sascha Schumann [Thu, 10 Jan 2002 07:21:57 +0000 (07:21 +0000)]
Add three-parameter touch() which enables users to set
mtime/atime to different values.

23 years agoFix bug in test script
Yasuo Ohgaki [Thu, 10 Jan 2002 06:44:02 +0000 (06:44 +0000)]
Fix bug in test script

23 years agoMake use of save_path for mm file.
Yasuo Ohgaki [Thu, 10 Jan 2002 06:14:40 +0000 (06:14 +0000)]
Make use of save_path for mm file.
Patch by Henning Schmiedehausen <hps@intermeta.de>
Closes bug 14808

23 years agoMake these tests succeed with non-standard settings
Sascha Schumann [Thu, 10 Jan 2002 05:11:19 +0000 (05:11 +0000)]
Make these tests succeed with non-standard settings

23 years ago- Fix compilation. (Christian Stocker)
Markus Fischer [Thu, 10 Jan 2002 01:53:22 +0000 (01:53 +0000)]
- Fix compilation. (Christian Stocker)

23 years agoChangeLog update
<changelog@php.net> [Thu, 10 Jan 2002 01:15:32 +0000 (01:15 +0000)]
ChangeLog update

23 years agoYear update
Yasuo Ohgaki [Thu, 10 Jan 2002 00:39:42 +0000 (00:39 +0000)]
Year update

23 years agoshmop got a new maintainer
Yasuo Ohgaki [Thu, 10 Jan 2002 00:38:05 +0000 (00:38 +0000)]
shmop got a new maintainer

23 years agoRename finite/isinf/isnan to more standard is_*() names.
jim winstead [Wed, 9 Jan 2002 23:59:05 +0000 (23:59 +0000)]
Rename finite/isinf/isnan to more standard is_*() names.

23 years agoMove type-handling functions into ext/standard/type.c (which had
jim winstead [Wed, 9 Jan 2002 23:47:46 +0000 (23:47 +0000)]
Move type-handling functions into ext/standard/type.c (which had
a few otherwise unused functions in it).

23 years ago- Correct some protos.
Markus Fischer [Wed, 9 Jan 2002 16:51:53 +0000 (16:51 +0000)]
- Correct some protos.

23 years ago- Fix bug introduced in earlier patch
Derick Rethans [Wed, 9 Jan 2002 16:03:36 +0000 (16:03 +0000)]
- Fix bug introduced in earlier patch

23 years ago- fixed typo in deprecated functionname
Uwe Steinmann [Wed, 9 Jan 2002 08:09:16 +0000 (08:09 +0000)]
- fixed typo in deprecated functionname

23 years ago- shmop_open has a new flag for read/write access, 'w'
Yasuo Ohgaki [Wed, 9 Jan 2002 08:02:21 +0000 (08:02 +0000)]
- shmop_open has a new flag for read/write access, 'w'
- eliminated a segfault when trying to write to a SHM_RDONLY segment
- eliminated a segfault when an invalid flag which starts with 'a' or 'c' is passed
- updated creators' email addresses
- changed error messages to say shmop_* instead of shm* to correspond with new shmop_* function names
Patch by Ilia Alshanetsky (ilia@prohost.org)
# Please test :)

23 years ago- Fixed compile with older libxml.
foobar [Wed, 9 Jan 2002 03:42:30 +0000 (03:42 +0000)]
- Fixed compile with older libxml.
# I had libxml 2.4.2 installed.

23 years ago- Fixed the creation of pear-get script.
foobar [Wed, 9 Jan 2002 03:41:48 +0000 (03:41 +0000)]
- Fixed the creation of pear-get script.

23 years agoReverted Hartmut's patch as it caused more trouble than it solved.
foobar [Wed, 9 Jan 2002 03:40:51 +0000 (03:40 +0000)]
Reverted Hartmut's patch as it caused more trouble than it solved.
# Broke my build totally. The 'correct' fix is to make the checks better
# everywhere. ie. to check for existance of the library/symbol in some lib.

23 years agowhitespace
foobar [Wed, 9 Jan 2002 02:06:32 +0000 (02:06 +0000)]
whitespace

23 years agoChangeLog update
<changelog@php.net> [Wed, 9 Jan 2002 01:13:39 +0000 (01:13 +0000)]
ChangeLog update

23 years agoA
Jaroslaw Kolakowski [Tue, 8 Jan 2002 19:13:42 +0000 (19:13 +0000)]
A
Changed names of functions:
- htmldoc() to html_doc(),
- htmldocfile() to html_doc_file(),
- domxml_htmldumpmem() to domxml_html_dump_mem(),
- htmldumpmem() to html_dump_mem().

23 years agoSome whitespace fixes (naugthy me :) and make use of PHP_CHECK_LIBRARY
foobar [Tue, 8 Jan 2002 17:51:08 +0000 (17:51 +0000)]
Some whitespace fixes (naugthy me :) and make use of PHP_CHECK_LIBRARY
macro instead of AC_CHECK_LIB.

# Better not touch LIBS anywhere. It might cause unexpected build problems
# if someone forgets to set it back in some config.m4..

23 years agoChanged proto via Georg Richter's request.
Sterling Hughes [Tue, 8 Jan 2002 06:06:58 +0000 (06:06 +0000)]
Changed proto via Georg Richter's request.

23 years agoChangeLog update
<changelog@php.net> [Tue, 8 Jan 2002 01:14:25 +0000 (01:14 +0000)]
ChangeLog update

23 years agoNEWS update
<changelog@php.net> [Tue, 8 Jan 2002 01:14:22 +0000 (01:14 +0000)]
NEWS update

23 years ago- Added functions: htmldoc(), htmldocfile(), domxml_htmldumpmem().
Jaroslaw Kolakowski [Tue, 8 Jan 2002 00:31:26 +0000 (00:31 +0000)]
- Added functions: htmldoc(), htmldocfile(), domxml_htmldumpmem().
- Added error handling for the libxml library.
- Added preliminary DOM XSLT support:
-- uses the libxslt library,
-- operates on DOM objects, not strings,
-- functions: domxml_xslt_process(), domxml_xslt_version().

23 years agobrowscap url fix, plus removed ^M references. it should look nice on any os.
James Cox [Mon, 7 Jan 2002 18:51:51 +0000 (18:51 +0000)]
browscap url fix, plus removed ^M references. it should look nice on any os.

23 years agochanged the instructions for php with win32 + apache. Recommending using sapi
James Cox [Mon, 7 Jan 2002 18:31:18 +0000 (18:31 +0000)]
changed the instructions for php with win32 + apache. Recommending using sapi
over cgi binary, since cgi binary and apache don't mix well security wise.

23 years agoNew PostgreSQL functions
Yasuo Ohgaki [Mon, 7 Jan 2002 08:14:34 +0000 (08:14 +0000)]
New PostgreSQL functions

23 years agoFixed some protos.
Egon Schmid [Mon, 7 Jan 2002 06:58:01 +0000 (06:58 +0000)]
Fixed some protos.

23 years ago@added mb_get_info() to get internal settings of mbstring.
Rui Hirokawa [Mon, 7 Jan 2002 02:40:54 +0000 (02:40 +0000)]
@added mb_get_info() to get internal settings of mbstring.

23 years agoChangeLog update
<changelog@php.net> [Mon, 7 Jan 2002 01:13:47 +0000 (01:13 +0000)]
ChangeLog update

23 years agoNEWS update
<changelog@php.net> [Mon, 7 Jan 2002 01:13:44 +0000 (01:13 +0000)]
NEWS update

23 years ago- Fix domxml_node_unlink_node() proto and return value.
Markus Fischer [Mon, 7 Jan 2002 00:54:20 +0000 (00:54 +0000)]
- Fix domxml_node_unlink_node() proto and return value.

23 years agows
Tomas V.V.Cox [Mon, 7 Jan 2002 00:11:11 +0000 (00:11 +0000)]
ws

23 years agoAdded IPv6 support
Stig Venaas [Sun, 6 Jan 2002 23:10:54 +0000 (23:10 +0000)]
Added IPv6 support
@- Added IPv6 support in FTP extension. (Stig Venaas)

23 years agohostconnect now divides the timeout with no. of addresses. If a connection
Stig Venaas [Sun, 6 Jan 2002 22:45:43 +0000 (22:45 +0000)]
hostconnect now divides the timeout with no. of addresses. If a connection
attempt times out, it goes on to the next. Unless each timeout would be
<5s. Added php_any_addr() that fills out the any address for IPv6 and IPv4.

23 years ago- Output error when there's an uncaught exception (by Timm Friebe)
Andi Gutmans [Sun, 6 Jan 2002 20:30:41 +0000 (20:30 +0000)]
- Output error when there's an uncaught exception (by Timm Friebe)

23 years agouse the new Console_Getopt::readPHPArgv() function to read args
Tomas V.V.Cox [Sun, 6 Jan 2002 20:19:41 +0000 (20:19 +0000)]
use the new Console_Getopt::readPHPArgv() function to read args

23 years agoAdded readPHPArgv() function that will safely read the $argv PHP array
Tomas V.V.Cox [Sun, 6 Jan 2002 20:17:00 +0000 (20:17 +0000)]
Added readPHPArgv() function that will safely read the $argv PHP array
across different PHP configurations. Will take care on register_globals
and register_argc_argv ini directives and the new $_SERVER vars

23 years ago- Make sure $this is passed on to methods
Andi Gutmans [Sun, 6 Jan 2002 19:52:22 +0000 (19:52 +0000)]
- Make sure $this is passed on to methods

23 years agoHappy New Year.
Sebastian Bergmann [Sun, 6 Jan 2002 15:21:36 +0000 (15:21 +0000)]
Happy New Year.

23 years ago@- Added CLI (command line intrerface) sapi based on a cut-down version
Edin Kadribasic [Sun, 6 Jan 2002 14:08:14 +0000 (14:08 +0000)]
@- Added CLI (command line intrerface) sapi based on a cut-down version
@  of the CGI sapi which is more suited for writing shell scripts. Some of
@  the differences are: it prints no HTTP headers, displays plain text
@  error messages, etc. (Edin)
Added CLI (command line intrerface) sapi.
# Let's see if a build expert can make this compile along
# side some other sapi.

23 years agoAdded argc and argv in request_info needed for the new cli sapi.
Edin Kadribasic [Sun, 6 Jan 2002 13:58:05 +0000 (13:58 +0000)]
Added argc and argv in request_info needed for the new cli sapi.
Modified registering $argc and $argv to support cli sapi.

23 years agoAdded some consts for arguments in network.c declarations. Moved
Stig Venaas [Sun, 6 Jan 2002 11:54:19 +0000 (11:54 +0000)]
Added some consts for arguments in network.c declarations. Moved
php_sockaddr_storage to php_network.h and added check for struct
sockaddr_storage

23 years ago* archive the 2001 changelog
Stig Bakken [Sun, 6 Jan 2002 05:19:43 +0000 (05:19 +0000)]
* archive the 2001 changelog

23 years agoChangeLog update
<changelog@php.net> [Sun, 6 Jan 2002 01:19:29 +0000 (01:19 +0000)]
ChangeLog update

23 years agoNEWS update
<changelog@php.net> [Sun, 6 Jan 2002 01:19:24 +0000 (01:19 +0000)]
NEWS update

23 years ago- Refuse attribute nodes on add_child() and add list destructor for PI
Markus Fischer [Sat, 5 Jan 2002 23:50:59 +0000 (23:50 +0000)]
- Refuse attribute nodes on add_child() and add list destructor for PI
  nodes. (Christian Stocker)
- Fix append_child() according to add_child().
- Fix some protos, minor code and warning message cosmetics.

23 years agoMore tweaking of wordwrap() with the cut parameter set. It was being a
jim winstead [Sat, 5 Jan 2002 23:49:58 +0000 (23:49 +0000)]
More tweaking of wordwrap() with the cut parameter set. It was being a
little too aggressive and cutting words without breaking at spaces
first. (A couple of tests were incorrect.)

23 years ago- Small fix
Andi Gutmans [Sat, 5 Jan 2002 20:55:56 +0000 (20:55 +0000)]
- Small fix

23 years agoNew memcpy()-based wordwrap() implementation. The simple case
jim winstead [Sat, 5 Jan 2002 20:46:43 +0000 (20:46 +0000)]
New memcpy()-based wordwrap() implementation. The simple case
(single-character break, no forced break) appears to be about 60%
faster, and there's simply no comparison for non-simple cases with
non-trivial amounts of text. The old algorithm was O(n^2) (with an
unfortunately large constant factor) because of the use of strncat(),
the new one is O(n). Added some more tests, too.
@ - Made wordwrap() significantly faster. (Jim)
# test case: $t = join('',file('ChangeLog')); $w = wordwrap($t,10,"\n",1);
# new code completes in less than a second. i'm still waiting for the
# old code to finish.

23 years ago- Allow passing of $this as function arguments.
Andi Gutmans [Sat, 5 Jan 2002 19:59:09 +0000 (19:59 +0000)]
- Allow passing of $this as function arguments.
- Fix a bug which I introduced a couple of months ago

23 years agoAdded check for $argv avaible
Tomas V.V.Cox [Sat, 5 Jan 2002 17:20:08 +0000 (17:20 +0000)]
Added check for $argv avaible
(thanks Michael Härtl <mhaertl@pressline.de>)

23 years ago- Significantly improve the performance of method calls and $this->member
Andi Gutmans [Sat, 5 Jan 2002 15:18:30 +0000 (15:18 +0000)]
- Significantly improve the performance of method calls and $this->member
- lookups.

23 years agoFix the Win32 compile.
jim winstead [Sat, 5 Jan 2002 08:29:53 +0000 (08:29 +0000)]
Fix the Win32 compile.

23 years agoFixed some protos.
Egon Schmid [Sat, 5 Jan 2002 07:54:49 +0000 (07:54 +0000)]
Fixed some protos.

23 years agoApparently multi_convert_to_double_ex() didn't quite do what I
jim winstead [Sat, 5 Jan 2002 03:56:38 +0000 (03:56 +0000)]
Apparently multi_convert_to_double_ex() didn't quite do what I
thought. Still need to handle numeric strings.

23 years agoFixed pow(), and added finite(), isinf(), and isnan(). Also fixed
jim winstead [Sat, 5 Jan 2002 03:45:11 +0000 (03:45 +0000)]
Fixed pow(), and added finite(), isinf(), and isnan(). Also fixed
pow() tests.
@- Fixed pow(), and added finite(), isinf(), and isnan(). (Jim)
# Jeroen was on crack, and apparently flunked arithmetic. Names of new
# functions subject to change if people get persnickety about them.
# (They're currently the same as the underlying C library function
# names. Hope nobody forgets to update the tests if they change the
# names.)
# Oh, and pow() uses the new parameter-passing API now.

23 years agogood grief, positive powers of 0 are well-defined. (code fix coming.)
jim winstead [Sat, 5 Jan 2002 02:16:16 +0000 (02:16 +0000)]
good grief, positive powers of 0 are well-defined. (code fix coming.)

23 years agoBe more aggressive in making sure that substring matches are valid in
jim winstead [Sat, 5 Jan 2002 01:59:11 +0000 (01:59 +0000)]
Be more aggressive in making sure that substring matches are valid in
ereg_replace before trying to use them.
# i could have sworn i fixed this in php3. ereg() has similar logic, i
# guess i just missed ereg_replace. fixing this lets
# ext/standard/tests/reg/012.phpt pass on my debian/unstable box

23 years agoSurprising how tests can fail when they don't have any supporting data :) Thanks...
Zak Greant [Sat, 5 Jan 2002 01:58:44 +0000 (01:58 +0000)]
Surprising how tests can fail when they don't have any supporting data :) Thanks for the catch Jan and Jim

23 years agoChangeLog update
<changelog@php.net> [Sat, 5 Jan 2002 01:10:33 +0000 (01:10 +0000)]
ChangeLog update

23 years agoNEWS update
<changelog@php.net> [Sat, 5 Jan 2002 01:10:30 +0000 (01:10 +0000)]
NEWS update

23 years agoNuke unused variable warning (end_arr).
Jon Parise [Fri, 4 Jan 2002 22:57:36 +0000 (22:57 +0000)]
Nuke unused variable warning (end_arr).

23 years agoMade ldap_modify() an alias for ldap_mod_replace(). The two were identical.
Stig Venaas [Fri, 4 Jan 2002 20:56:03 +0000 (20:56 +0000)]
Made ldap_modify() an alias for ldap_mod_replace(). The two were identical.
#For more info, see my posting on php-dev Dec 25th.