]>
granicus.if.org Git - php/log
foobar [Fri, 30 Nov 2001 19:01:32 +0000 (19:01 +0000)]
Added missing cvs ids and unified configure messages.
foobar [Fri, 30 Nov 2001 19:00:13 +0000 (19:00 +0000)]
Unified the configure messages.
Andi Gutmans [Fri, 30 Nov 2001 16:29:47 +0000 (16:29 +0000)]
- Initial support for class constants. There are still a few semantic
- issues which need to be looked into but basically it seems to work.
- Example:
<?php
class foo
{
const hey = "hello";
}
print foo::hey;
?>
Andi Gutmans [Fri, 30 Nov 2001 11:42:30 +0000 (11:42 +0000)]
- Fix typo
Derick Rethans [Fri, 30 Nov 2001 10:48:38 +0000 (10:48 +0000)]
- Added ob_flush and ob_clean functions, which do not end the buffer like
ob_end_flush and ob_end_clean do.
@- Added ob_flush and ob_clean functions, which flush and clean an
@ output buffer without destroying the buffer. (Derick)
Derick Rethans [Fri, 30 Nov 2001 09:29:15 +0000 (09:29 +0000)]
- Fix for bug 8909 and 12680 (timezone problem)
foobar [Fri, 30 Nov 2001 04:46:36 +0000 (04:46 +0000)]
This is better way to configure. PDFlib 3/4 can be compiled with external libs too..
<changelog@php.net> [Fri, 30 Nov 2001 01:10:33 +0000 (01:10 +0000)]
ChangeLog update
Stig Venaas [Thu, 29 Nov 2001 20:26:20 +0000 (20:26 +0000)]
Adding ldap_set_rebind_proc() for APIs with V3 3 arg variant, need more
testing.
Stig Venaas [Thu, 29 Nov 2001 20:17:17 +0000 (20:17 +0000)]
Making the link resource point to a structure that contains the LDAP
link, rather than point to it directly.
# This makes it much easier to store and retrieve per-connection PHP state.
Sterling Hughes [Thu, 29 Nov 2001 11:29:11 +0000 (11:29 +0000)]
Update to the latest apr api (patch by Clif Woolley)
Thies C. Arntzen [Thu, 29 Nov 2001 08:18:50 +0000 (08:18 +0000)]
i'm sure i had this compile before;-)
Thies C. Arntzen [Thu, 29 Nov 2001 08:09:39 +0000 (08:09 +0000)]
fix a crash in socket_connect (if hostname was not resolvable)
initialize max_fd in various fdset function
fix error checking in _read and _write
<changelog@php.net> [Thu, 29 Nov 2001 01:10:31 +0000 (01:10 +0000)]
ChangeLog update
Uwe Steinmann [Wed, 28 Nov 2001 12:07:17 +0000 (12:07 +0000)]
- introduced several macros to simply code (done by Markus Fischer)
<changelog@php.net> [Wed, 28 Nov 2001 01:12:08 +0000 (01:12 +0000)]
ChangeLog update
Andi Gutmans [Tue, 27 Nov 2001 17:46:31 +0000 (17:46 +0000)]
- Support syntax for class constants (doesn't do anything yet but
- required some reworking of the grammar).
<changelog@php.net> [Tue, 27 Nov 2001 01:10:08 +0000 (01:10 +0000)]
ChangeLog update
Frank M. Kromann [Tue, 27 Nov 2001 00:08:36 +0000 (00:08 +0000)]
Removing winutil.c from this project. the functions needed are found in php4ts.dll
foobar [Mon, 26 Nov 2001 22:56:36 +0000 (22:56 +0000)]
Show the registered ini entry in phpinfo()
foobar [Mon, 26 Nov 2001 22:46:15 +0000 (22:46 +0000)]
Updated file since .re changed.
Derick Rethans [Mon, 26 Nov 2001 22:33:44 +0000 (22:33 +0000)]
- Also patch the file from which var_unserializer.c is generated
Derick Rethans [Mon, 26 Nov 2001 21:04:21 +0000 (21:04 +0000)]
- Adding a callback mechanism to the unserializer. (patch by Bernd
Roemer <berndr@bonn.edu>)
#- An explainatory e-mail will be send to php-dev
Sterling Hughes [Mon, 26 Nov 2001 18:57:44 +0000 (18:57 +0000)]
Z_TYPE(filehandle)?? ok.. whatever... ;)
Andi Gutmans [Mon, 26 Nov 2001 18:05:01 +0000 (18:05 +0000)]
- Support static $var = 0; style initialization of static class
- members. For example:
- class foo {
- static $my_static = 5;
-
- }
-
- print foo::$my_static;
Sebastian Bergmann [Mon, 26 Nov 2001 10:55:46 +0000 (10:55 +0000)]
Nuke ext/sablot entries.
<changelog@php.net> [Mon, 26 Nov 2001 01:10:42 +0000 (01:10 +0000)]
ChangeLog update
Rui Hirokawa [Sun, 25 Nov 2001 22:20:27 +0000 (22:20 +0000)]
fixed a link error in configure script.
Egon Schmid [Sun, 25 Nov 2001 19:22:51 +0000 (19:22 +0000)]
Fixed some protos. If pi means processing instruction, it should be written IMHO in uppercase characters.
Egon Schmid [Sun, 25 Nov 2001 18:51:00 +0000 (18:51 +0000)]
Fixed some protos.
Andi Gutmans [Sun, 25 Nov 2001 12:29:08 +0000 (12:29 +0000)]
- Fix crash and leak
Zeev Suraski [Sun, 25 Nov 2001 10:01:49 +0000 (10:01 +0000)]
Fix build if PHP_ENABLE_SEH is not defined
Andi Gutmans [Sun, 25 Nov 2001 08:58:59 +0000 (08:58 +0000)]
- Whitespace
Andi Gutmans [Sun, 25 Nov 2001 08:49:09 +0000 (08:49 +0000)]
- Support static members. The following script works:
<?
class foo
{
class bar
{
function init_values()
{
for ($i=1; $i<10; $i++) {
foo::bar::$hello[$i] = $i*$i;
}
}
function print_values()
{
for ($i=1; $i<10; $i++) {
print foo::bar::$hello[$i] . "\n";
}
}
}
}
foo::bar::init_values();
foo::bar::print_values();
for ($i=1; $i<10; $i++) {
print $hello[$i]?"Shouldn't be printed\n":"";
}
?>
<changelog@php.net> [Sun, 25 Nov 2001 01:10:22 +0000 (01:10 +0000)]
ChangeLog update
foobar [Sat, 24 Nov 2001 23:47:10 +0000 (23:47 +0000)]
Added missing ini directive: always_populate_raw_po st_data
foobar [Sat, 24 Nov 2001 23:38:08 +0000 (23:38 +0000)]
Added missing CVS Id tag.
Andi Gutmans [Sat, 24 Nov 2001 18:27:20 +0000 (18:27 +0000)]
- MFZE1
foobar [Sat, 24 Nov 2001 18:23:35 +0000 (18:23 +0000)]
- Handle more error types when uploading files.
Zeev Suraski [Sat, 24 Nov 2001 16:07:05 +0000 (16:07 +0000)]
whitespace
Zeev Suraski [Sat, 24 Nov 2001 16:05:22 +0000 (16:05 +0000)]
whitespace
Zeev Suraski [Sat, 24 Nov 2001 15:32:00 +0000 (15:32 +0000)]
Honor error_reporting (in general and @ in particular) for IMAP notices
Zeev Suraski [Sat, 24 Nov 2001 02:41:58 +0000 (02:41 +0000)]
Save entries in $_SESSION even if register_globals is on
Zeev Suraski [Sat, 24 Nov 2001 02:14:45 +0000 (02:14 +0000)]
Entries registered with session_register() and altered by changing
$_SESSION (or $HTTP_SESSION_VARS) were not properly saved. Fixed.
<changelog@php.net> [Sat, 24 Nov 2001 01:10:23 +0000 (01:10 +0000)]
ChangeLog update
Zeev Suraski [Sat, 24 Nov 2001 01:08:05 +0000 (01:08 +0000)]
whitespace
Derick Rethans [Fri, 23 Nov 2001 11:46:01 +0000 (11:46 +0000)]
- Reverse slight mistake (patch by Markus Fischer)
Rui Hirokawa [Fri, 23 Nov 2001 02:53:16 +0000 (02:53 +0000)]
restriction is relaxed because output handler couldn't be used even if zlib.output_compression is set to off.
<changelog@php.net> [Fri, 23 Nov 2001 01:10:12 +0000 (01:10 +0000)]
ChangeLog update
<changelog@php.net> [Fri, 23 Nov 2001 01:10:09 +0000 (01:10 +0000)]
NEWS update
Derick Rethans [Thu, 22 Nov 2001 22:46:31 +0000 (22:46 +0000)]
- Beautifying
foobar [Thu, 22 Nov 2001 15:14:49 +0000 (15:14 +0000)]
WS fix.
Derick Rethans [Thu, 22 Nov 2001 14:33:35 +0000 (14:33 +0000)]
- Fix crach bug if the parameter to shm_remove is not a valid identifier.
Derick Rethans [Thu, 22 Nov 2001 07:58:37 +0000 (07:58 +0000)]
- Added a parameter to mysql_connect to force a new database link to be
created. (patch by Markus Fischer <mfischer@guru.josefine.at>)
@- Added a parameter to mysql_connect to force a new database link to be
@ created. (Markus, Derick)
Derick Rethans [Thu, 22 Nov 2001 07:48:59 +0000 (07:48 +0000)]
- Fix for bug #14169
<changelog@php.net> [Thu, 22 Nov 2001 01:11:02 +0000 (01:11 +0000)]
ChangeLog update
<changelog@php.net> [Thu, 22 Nov 2001 01:10:59 +0000 (01:10 +0000)]
NEWS update
Frank M. Kromann [Wed, 21 Nov 2001 22:47:54 +0000 (22:47 +0000)]
Allow php_win_err() to be called from extenstions
Stig Venaas [Wed, 21 Nov 2001 20:14:17 +0000 (20:14 +0000)]
Added ldap_sort() function
@- Added ldap_sort() function. (Stig Venaas)
Uwe Steinmann [Wed, 21 Nov 2001 17:01:19 +0000 (17:01 +0000)]
- add functions clone_node(), is_blank_node(), create_entity_reference()
- fixed bug in node_name()
- fixed behavior of append_child(), it now adds a child a not a sibling
Sean Bright [Wed, 21 Nov 2001 02:00:02 +0000 (02:00 +0000)]
Fix typo.
<changelog@php.net> [Wed, 21 Nov 2001 01:10:26 +0000 (01:10 +0000)]
ChangeLog update
Harald Radi [Wed, 21 Nov 2001 00:36:20 +0000 (00:36 +0000)]
added blabla
Sterling Hughes [Tue, 20 Nov 2001 11:29:54 +0000 (11:29 +0000)]
Fix a crash bug in CURLOPT_POSTFIELDS by using curl_formadd instead of
curl_formparse
Fix a crash bug when CURLOPT_INFILE is not properly specified.
James Moore [Tue, 20 Nov 2001 10:47:20 +0000 (10:47 +0000)]
Remove sablot from php_modules.dsw, its no longer in repository
<changelog@php.net> [Tue, 20 Nov 2001 01:10:04 +0000 (01:10 +0000)]
ChangeLog update
Andrei Zmievski [Mon, 19 Nov 2001 15:47:50 +0000 (15:47 +0000)]
Fix NEWS.
Derick Rethans [Mon, 19 Nov 2001 15:20:26 +0000 (15:20 +0000)]
- Added a bugfix
Zeev Suraski [Mon, 19 Nov 2001 14:59:38 +0000 (14:59 +0000)]
Fix set_time_limit() to affect only the current request (fix bug #13711)
<changelog@php.net> [Mon, 19 Nov 2001 01:11:38 +0000 (01:11 +0000)]
ChangeLog update
<changelog@php.net> [Mon, 19 Nov 2001 01:11:34 +0000 (01:11 +0000)]
NEWS update
foobar [Mon, 19 Nov 2001 00:51:06 +0000 (00:51 +0000)]
Fixed bugs: #14034, #11647 (can not find any others)
foobar [Sun, 18 Nov 2001 23:52:11 +0000 (23:52 +0000)]
Fixed bug: #14014.
foobar [Sun, 18 Nov 2001 23:08:47 +0000 (23:08 +0000)]
Test before commit..test before commit..
foobar [Sun, 18 Nov 2001 22:54:18 +0000 (22:54 +0000)]
Now this might even work.
Doug MacEachern [Sun, 18 Nov 2001 20:08:43 +0000 (20:08 +0000)]
AIX compiler doesn't like having a comma at the end of the enum
(Ryan Bloom <rbb@apache.org>)
Derick Rethans [Sun, 18 Nov 2001 18:48:17 +0000 (18:48 +0000)]
- Added md5_file(), which calculaties the MD5 sum of a file.
(patch by: Alessandro Astarita <aleast@capri.it>) (Derick)
@- Added md5_file(), which calculaties the MD5 sum of a file.
@ (patch by: Alessandro Astarita <aleast@capri.it>) (Derick)
Derick Rethans [Sun, 18 Nov 2001 13:57:22 +0000 (13:57 +0000)]
- MFB
Sterling Hughes [Sun, 18 Nov 2001 13:21:33 +0000 (13:21 +0000)]
Remove the .cvsignore file
Sterling Hughes [Sun, 18 Nov 2001 13:20:37 +0000 (13:20 +0000)]
Remove the sablotron extension
# HOOOOOOOOOOOORAY :)Remove the sablotron extension
# HOOOOOOOOOOOORAY :)Remove the sablotron extension
# HOOOOOOOOOOOORAY :)Remove the sablotron extension
# HOOOOOOOOOOOORAY :)Remove the sablotron extension
# HOOOOOOOOOOOORAY :)Remove the sablotron extension
# HOOOOOOOOOOOORAY :)Remove the sablotron extension
# HOOOOOOOOOOOORAY :)Remove the sablotron extension
# HOOOOOOOOOOOORAY :)Remove the sablotron extension
# HOOOOOOOOOOOORAY :)
Derick Rethans [Sun, 18 Nov 2001 12:01:54 +0000 (12:01 +0000)]
- Fix build on FreeBSD (patch by Markus Fischer)
foobar [Sun, 18 Nov 2001 03:34:23 +0000 (03:34 +0000)]
WS fix
Andrei Zmievski [Sun, 18 Nov 2001 01:16:03 +0000 (01:16 +0000)]
- Added support for parsing recordsets.
- Fixed a bug that sometimes would corrupt top-level element
if it was a scalar one.
<changelog@php.net> [Sun, 18 Nov 2001 01:10:14 +0000 (01:10 +0000)]
ChangeLog update
Zeev Suraski [Sat, 17 Nov 2001 21:15:38 +0000 (21:15 +0000)]
Fix bug 13143
<changelog@php.net> [Sat, 17 Nov 2001 01:10:30 +0000 (01:10 +0000)]
ChangeLog update
David Reid [Fri, 16 Nov 2001 17:31:13 +0000 (17:31 +0000)]
s/\t/ /
Sascha Schumann [Fri, 16 Nov 2001 16:34:14 +0000 (16:34 +0000)]
Fix two incidents which have been reported about the new unserializer.
#1: forgot to handle negative numbers
#2: added zval_ptr_dtor which was not in the original code which
might lead to crash
PR: #14082
Andrei Zmievski [Fri, 16 Nov 2001 15:04:12 +0000 (15:04 +0000)]
Add todo item.
Rasmus Lerdorf [Fri, 16 Nov 2001 11:59:04 +0000 (11:59 +0000)]
Use the macro here and add an E_NOTICE
foobar [Fri, 16 Nov 2001 03:34:26 +0000 (03:34 +0000)]
- Nuked some memleaks
- Changed the error to be set always. Otherwise the index for error
wouldn't be correct in case of uploading multiple files within array.
( <input type="file" name="test[]"> )
<changelog@php.net> [Fri, 16 Nov 2001 01:10:18 +0000 (01:10 +0000)]
ChangeLog update
foobar [Fri, 16 Nov 2001 01:06:48 +0000 (01:06 +0000)]
No use of populating the hash if there is no file saved.
Zeev Suraski [Thu, 15 Nov 2001 23:26:52 +0000 (23:26 +0000)]
MFZE1
foobar [Thu, 15 Nov 2001 15:37:02 +0000 (15:37 +0000)]
In case of submitting form without any files selected don't set
the tmp_name.
Stanislav Malyshev [Thu, 15 Nov 2001 09:53:40 +0000 (09:53 +0000)]
Check in ftok() function by Andrew Sitnikov <sitnikov@infonet.ee>
Tomas V.V.Cox [Thu, 15 Nov 2001 01:24:35 +0000 (01:24 +0000)]
implemented "uninstall" command
<changelog@php.net> [Thu, 15 Nov 2001 01:10:15 +0000 (01:10 +0000)]
ChangeLog update
Stig Venaas [Wed, 14 Nov 2001 22:05:33 +0000 (22:05 +0000)]
Fixed some memory leaks and removed some unnecessary checks due to
ZEND_FETCH_RESOURCE returning on error
Frank M. Kromann [Wed, 14 Nov 2001 20:42:38 +0000 (20:42 +0000)]
Prevent fbsql_num_rows from looping