]> granicus.if.org Git - php/log
php
21 years agoModify str_replace/str_ireplace to report how many needles were matched. (FR #8218)
Sara Golemon [Sun, 13 Apr 2003 22:59:19 +0000 (22:59 +0000)]
Modify str_replace/str_ireplace to report how many needles were matched. (FR #8218)

21 years agoMake it static
Marcus Boerger [Sun, 13 Apr 2003 20:30:57 +0000 (20:30 +0000)]
Make it static

21 years agodon't remove config.nice directly, so that we don't lose it on
Sascha Schumann [Sun, 13 Apr 2003 20:13:06 +0000 (20:13 +0000)]
don't remove config.nice directly, so that we don't lose it on
inferior systems like windows.

21 years agoSpeling
Marcus Boerger [Sun, 13 Apr 2003 20:12:54 +0000 (20:12 +0000)]
Speling

21 years agocygwin ships with bison 1.875b, so we need to remove that b here
Sascha Schumann [Sun, 13 Apr 2003 20:09:32 +0000 (20:09 +0000)]
cygwin ships with bison 1.875b, so we need to remove that b here

21 years agoReenable dba_popen()
Marcus Boerger [Sun, 13 Apr 2003 19:50:28 +0000 (19:50 +0000)]
Reenable dba_popen()

21 years agoFix persistent stream closing (that one took me at least 3 days)
Marcus Boerger [Sun, 13 Apr 2003 19:47:55 +0000 (19:47 +0000)]
Fix persistent stream closing (that one took me at least 3 days)

21 years ago- Udm_Make_Excerpt has been fixed to be compatible with mnogosearch-3.2.10+
Sergey Kartashoff [Sun, 13 Apr 2003 17:52:25 +0000 (17:52 +0000)]
- Udm_Make_Excerpt has been fixed to be compatible with mnogosearch-3.2.10+

21 years agoMoved a controversial entry to the proper place
Moriyoshi Koizumi [Sat, 12 Apr 2003 22:29:00 +0000 (22:29 +0000)]
Moved a controversial entry to the proper place
# maybe it's time to replace output buffering facility with the streams?

21 years agoNFN
Moriyoshi Koizumi [Sat, 12 Apr 2003 22:02:26 +0000 (22:02 +0000)]
NFN

21 years agoForgot about this one :)
Moriyoshi Koizumi [Sat, 12 Apr 2003 21:56:08 +0000 (21:56 +0000)]
Forgot about this one :)

21 years agoMade dirname() binary-safe.
Moriyoshi Koizumi [Sat, 12 Apr 2003 21:53:46 +0000 (21:53 +0000)]
Made dirname() binary-safe.

21 years agostrip_tags() is also binary-safe now.
Moriyoshi Koizumi [Sat, 12 Apr 2003 21:29:49 +0000 (21:29 +0000)]
strip_tags() is also binary-safe now.

21 years agoScratch off done TODOs
Sara Golemon [Sat, 12 Apr 2003 20:09:26 +0000 (20:09 +0000)]
Scratch off done TODOs

21 years agoAdd tests for strrpos/stripos, and minor fix to maintain BC for condition with empty...
Sara Golemon [Sat, 12 Apr 2003 20:04:06 +0000 (20:04 +0000)]
Add tests for strrpos/stripos, and minor fix to maintain BC for condition with empty needles/haystacks

21 years agoRewrite strrpos and strripos to be binary safe and behave the way their prototype...
Sara Golemon [Sat, 12 Apr 2003 07:36:22 +0000 (07:36 +0000)]
Rewrite strrpos and strripos to be binary safe and behave the way their prototype suggests (also like their counterparts strpos and stripos) i.e.: Allow string needles rather than just characters

21 years agoFix warnings.
Sebastian Bergmann [Fri, 11 Apr 2003 17:30:42 +0000 (17:30 +0000)]
Fix warnings.

21 years agoFix for #23069 (Windows sets readonly mode for temporary files in tempnam)
Wez Furlong [Fri, 11 Apr 2003 11:08:44 +0000 (11:08 +0000)]
Fix for #23069 (Windows sets readonly mode for temporary files in tempnam)

21 years ago- Fixed protos
Derick Rethans [Fri, 11 Apr 2003 09:53:01 +0000 (09:53 +0000)]
- Fixed protos

21 years agoaccept possible leaks for now to make SELECTS with both bound parameters
Hartmut Holzgraefe [Fri, 11 Apr 2003 04:41:52 +0000 (04:41 +0000)]
accept possible leaks for now to make SELECTS with both bound parameters
and results again ...

21 years agoproto fix
Hartmut Holzgraefe [Fri, 11 Apr 2003 04:30:29 +0000 (04:30 +0000)]
proto fix

21 years agoparameter count for bind stuff is different in OO interface
Hartmut Holzgraefe [Fri, 11 Apr 2003 04:29:28 +0000 (04:29 +0000)]
parameter count for bind stuff is different in OO interface

21 years agoExport constants to userland
Sara Golemon [Fri, 11 Apr 2003 02:55:00 +0000 (02:55 +0000)]
Export constants to userland

21 years agoFixed integer overflow inside mhash_keygen_s2k().
Ilia Alshanetsky [Fri, 11 Apr 2003 02:40:21 +0000 (02:40 +0000)]
Fixed integer overflow inside mhash_keygen_s2k().

21 years agosatisfy andi's switch fetish ;-)
Sterling Hughes [Thu, 10 Apr 2003 20:08:02 +0000 (20:08 +0000)]
satisfy andi's switch fetish ;-)

21 years agoFix ZTS build. Fix warning.
Sebastian Bergmann [Thu, 10 Apr 2003 17:02:31 +0000 (17:02 +0000)]
Fix ZTS build. Fix warning.

21 years agoDocument 'const' keyword.
Sebastian Bergmann [Thu, 10 Apr 2003 16:54:46 +0000 (16:54 +0000)]
Document 'const' keyword.

21 years agoallow expressions within constants, so the following is possible
Sterling Hughes [Thu, 10 Apr 2003 15:43:47 +0000 (15:43 +0000)]
allow expressions within constants, so the following is possible

class foo {
const a = 1<<0;
const b = 1<<1;
const c = a | b;
}

this makes const a compile-time expression.  all other operators are
unaffected.

21 years ago- More TSRMLS stuff.
Christian Stocker [Thu, 10 Apr 2003 12:45:38 +0000 (12:45 +0000)]
- More TSRMLS stuff.
- Fixed memleaks in domxml_doc_add_root, domxml_xslt_stylesheet
  and domxml_xslt_stylesheet_doc
- Completed implementation of domxml_doc_imported_node.

21 years agoMake Apache 2 define SG(request_info).path_translated like Apache 1 did.
Stanislav Malyshev [Thu, 10 Apr 2003 11:33:45 +0000 (11:33 +0000)]
Make Apache 2 define SG(request_info).path_translated like Apache 1 did.

21 years agomake Apache define SG(request_info).path_translted, like Apache 1 did.
Stanislav Malyshev [Thu, 10 Apr 2003 11:28:54 +0000 (11:28 +0000)]
make Apache define SG(request_info).path_translted, like Apache 1 did.

21 years agoRevert Harald's commit
Zeev Suraski [Thu, 10 Apr 2003 04:43:42 +0000 (04:43 +0000)]
Revert Harald's commit

21 years agoFixed a crash in the query tracer output due to buffer overflow.
Ilia Alshanetsky [Thu, 10 Apr 2003 04:35:39 +0000 (04:35 +0000)]
Fixed a crash in the query tracer output due to buffer overflow.
Fixed a crash in notice message for unbuffered query.

21 years agoOne line fix so that it will compile
George Schlossnagle [Thu, 10 Apr 2003 03:11:27 +0000 (03:11 +0000)]
One line fix so that it will compile

21 years agoremoving the *syntactical sugar* again
Harald Radi [Wed, 9 Apr 2003 20:23:06 +0000 (20:23 +0000)]
removing the *syntactical sugar* again

# commiting that on behalf of the community :)
# don't blame me, i'm just acting as a proxy

21 years agoFix ZTS build and warnings
Marcus Boerger [Wed, 9 Apr 2003 19:14:44 +0000 (19:14 +0000)]
Fix ZTS build and warnings

21 years agoMFB: Forgotten _FORM -> _REQUEST change
Rasmus Lerdorf [Wed, 9 Apr 2003 17:46:42 +0000 (17:46 +0000)]
MFB: Forgotten _FORM -> _REQUEST change

21 years ago- Fixed printing the version string if it includes zend extensions in
Derick Rethans [Wed, 9 Apr 2003 15:19:07 +0000 (15:19 +0000)]
- Fixed printing the version string if it includes zend extensions in
  text-mode

21 years ago*** empty log message ***
Edin Kadribasic [Wed, 9 Apr 2003 12:03:58 +0000 (12:03 +0000)]
*** empty log message ***

21 years ago- Fixed some memleaks when using attributes
Christian Stocker [Wed, 9 Apr 2003 07:29:39 +0000 (07:29 +0000)]
- Fixed some memleaks when using attributes
- Added attrnode->set_value()
(by Rob Richards)

21 years agoAdded missing bit from gd2.0.12 sync.
Ilia Alshanetsky [Wed, 9 Apr 2003 01:55:48 +0000 (01:55 +0000)]
Added missing bit from gd2.0.12 sync.

21 years agoHopefully last fix on error reporting
Marcus Boerger [Wed, 9 Apr 2003 00:38:19 +0000 (00:38 +0000)]
Hopefully last fix on error reporting

21 years agoSwitch file_put_contents 'bool use_include_path' to 'int flags' to allow other option...
Sara Golemon [Tue, 8 Apr 2003 23:24:53 +0000 (23:24 +0000)]
Switch file_put_contents 'bool use_include_path' to 'int flags' to allow other options such as appending

21 years agoAdd context support to file_put_contents() and readfile(), convert readfile() to...
Sara Golemon [Tue, 8 Apr 2003 22:10:15 +0000 (22:10 +0000)]
Add context support to file_put_contents() and readfile(), convert readfile() to zend_parse_parameters usage, fix proto for file_put_contents()

21 years agoAdded context support to file()
Sara Golemon [Tue, 8 Apr 2003 21:00:07 +0000 (21:00 +0000)]
Added context support to file()

21 years agodomdocument->free() was MFHd to PHP_4_3 branch.
Christian Stocker [Tue, 8 Apr 2003 19:43:56 +0000 (19:43 +0000)]
domdocument->free() was MFHd to PHP_4_3 branch.

21 years agofixes memleaks in element->get_elements_by_tagname & document->get_elements_by_tagname
Christian Stocker [Tue, 8 Apr 2003 19:30:27 +0000 (19:30 +0000)]
fixes memleaks in element->get_elements_by_tagname & document->get_elements_by_tagname

21 years agoNEWS entry fixes for domxml (more readable hopefully...)
Christian Stocker [Tue, 8 Apr 2003 18:44:31 +0000 (18:44 +0000)]
NEWS entry fixes for domxml (more readable hopefully...)

21 years agoSwitch some functions to use new zend_lookup_ns_class() methods. This
Andrei Zmievski [Tue, 8 Apr 2003 18:22:32 +0000 (18:22 +0000)]
Switch some functions to use new zend_lookup_ns_class() methods. This
means that they will accept both simple and fully qualified class names.

21 years agoRename zend_register_internal_class_in_ns() to a better, less filling,
Andrei Zmievski [Tue, 8 Apr 2003 17:40:56 +0000 (17:40 +0000)]
Rename zend_register_internal_class_in_ns() to a better, less filling,
but with the same great taste zend_register_internal_ns_class().

21 years agomake it possible to free DomHtmlDocuments as well
Christian Stocker [Tue, 8 Apr 2003 17:22:19 +0000 (17:22 +0000)]
make it possible to free DomHtmlDocuments as well

21 years agoRemove php_memnstr (it's in ZE now).
Andrei Zmievski [Tue, 8 Apr 2003 17:15:43 +0000 (17:15 +0000)]
Remove php_memnstr (it's in ZE now).

21 years agoAdd zend_lookup_ns_class() function.
Andrei Zmievski [Tue, 8 Apr 2003 17:10:01 +0000 (17:10 +0000)]
Add zend_lookup_ns_class() function.

21 years agoMove memnstr into Zend and make an alias for BC in PHP.
Andrei Zmievski [Tue, 8 Apr 2003 15:04:26 +0000 (15:04 +0000)]
Move memnstr into Zend and make an alias for BC in PHP.

21 years agomake it compile ....
Christian Stocker [Tue, 8 Apr 2003 14:29:15 +0000 (14:29 +0000)]
make it compile ....

21 years agofile_set_contents -> file_put_contents
foobar [Tue, 8 Apr 2003 14:12:52 +0000 (14:12 +0000)]
file_set_contents -> file_put_contents

21 years ago- Fixes a bunch of memleaks, especially with attributes (by Rob Richards and me)
Christian Stocker [Tue, 8 Apr 2003 13:19:49 +0000 (13:19 +0000)]
- Fixes a bunch of memleaks, especially with attributes (by Rob Richards and me)
- Added domdocument->free() for freeing documents during script-time
#will later merge to PHP_4_3

21 years agoFriBidi was moved to PECL long time ago
Tal Peer [Tue, 8 Apr 2003 11:35:23 +0000 (11:35 +0000)]
FriBidi was moved to PECL long time ago

21 years agoFix Win32 build.
Sebastian Bergmann [Tue, 8 Apr 2003 07:36:58 +0000 (07:36 +0000)]
Fix Win32 build.

21 years agoChangeLog update
<changelog@php.net> [Tue, 8 Apr 2003 00:31:01 +0000 (00:31 +0000)]
ChangeLog update

21 years agoFixed bug #23102 (integer overflow in exif_iif_add_value()).
Ilia Alshanetsky [Tue, 8 Apr 2003 00:18:57 +0000 (00:18 +0000)]
Fixed bug #23102 (integer overflow in exif_iif_add_value()).

21 years agoAdd context support to file_get_contents
Sara Golemon [Tue, 8 Apr 2003 00:02:47 +0000 (00:02 +0000)]
Add context support to file_get_contents

21 years agoRemoved entry that is in the PHP_4_3 branch..
foobar [Mon, 7 Apr 2003 23:20:29 +0000 (23:20 +0000)]
Removed entry that is in the PHP_4_3 branch..

21 years agoreorder
foobar [Mon, 7 Apr 2003 23:19:22 +0000 (23:19 +0000)]
reorder

21 years agoFixed bug #23093 (highlight_string() crashed with __FUNCTION__)
foobar [Mon, 7 Apr 2003 22:51:28 +0000 (22:51 +0000)]
Fixed bug #23093 (highlight_string() crashed with __FUNCTION__)

21 years agoadd markers that make this file easy to parse for external sources
Sterling Hughes [Mon, 7 Apr 2003 21:48:17 +0000 (21:48 +0000)]
add markers that make this file easy to parse for external sources

21 years agoIntroduce support for context options 'method', 'header', 'content'
Sara Golemon [Mon, 7 Apr 2003 21:02:04 +0000 (21:02 +0000)]
Introduce support for context options 'method', 'header', 'content'

21 years agoChangeLog update
<changelog@php.net> [Mon, 7 Apr 2003 00:30:52 +0000 (00:30 +0000)]
ChangeLog update

21 years agoFixed bug #23071 (when DST in effect, date("T") crashed PHP)
foobar [Sun, 6 Apr 2003 22:37:45 +0000 (22:37 +0000)]
Fixed bug #23071 (when DST in effect, date("T") crashed PHP)

21 years agoSupport for ZTS
Marcus Boerger [Sun, 6 Apr 2003 20:19:52 +0000 (20:19 +0000)]
Support for ZTS

21 years agoImproved zmemcheck macro so it displays the size of each memory block too.
Moriyoshi Koizumi [Sun, 6 Apr 2003 18:40:19 +0000 (18:40 +0000)]
Improved zmemcheck macro so it displays the size of each memory block too.

21 years agoImproved readability of zmemcheck output
Moriyoshi Koizumi [Sun, 6 Apr 2003 18:12:16 +0000 (18:12 +0000)]
Improved readability of zmemcheck output

21 years agoAdded zmemcheck macro, which may help you examine the memory blocks being
Moriyoshi Koizumi [Sun, 6 Apr 2003 17:53:17 +0000 (17:53 +0000)]
Added zmemcheck macro, which may help you examine the memory blocks being
handled by the memory manager.

21 years agoreorder
foobar [Sun, 6 Apr 2003 12:04:21 +0000 (12:04 +0000)]
reorder

21 years agoNEWS update
<changelog@php.net> [Sun, 6 Apr 2003 01:30:53 +0000 (01:30 +0000)]
NEWS update

21 years agoChangeLog update
<changelog@php.net> [Sun, 6 Apr 2003 01:30:46 +0000 (01:30 +0000)]
ChangeLog update

21 years agoCollate version handling and bump up version (noticed by Peter Neuman)
Marcus Boerger [Sat, 5 Apr 2003 20:43:53 +0000 (20:43 +0000)]
Collate version handling and bump up version (noticed by Peter Neuman)

21 years ago@- Added domxml_doc_create_document_fragment() and
Christian Stocker [Sat, 5 Apr 2003 19:56:41 +0000 (19:56 +0000)]
@- Added domxml_doc_create_document_fragment() and
@    domxml_document_fragment_open_mem(string) method (Christian)
Useful for adding and parsing (well-balanced) document fragments.
- Bumped up API version number

21 years ago--enable-all is not useful at all, removed from help
foobar [Sat, 5 Apr 2003 17:47:03 +0000 (17:47 +0000)]
--enable-all is not useful at all, removed from help

21 years agoBetter ifdef it out here too
foobar [Sat, 5 Apr 2003 17:33:55 +0000 (17:33 +0000)]
Better ifdef it out here too

21 years agoDebug watches probably don't belong in CVS.
Sara Golemon [Sat, 5 Apr 2003 17:31:34 +0000 (17:31 +0000)]
Debug watches probably don't belong in CVS.

21 years agoSyncronized bunbled GD library with gd 2.0.12
Ilia Alshanetsky [Sat, 5 Apr 2003 17:23:55 +0000 (17:23 +0000)]
Syncronized bunbled GD library with gd 2.0.12

# One very useful feature that I still need to add support for in our
# interface to the lib is the support for png compression for imagepng().

21 years agoInclude ldd output
Marcus Boerger [Sat, 5 Apr 2003 12:16:29 +0000 (12:16 +0000)]
Include ldd output

21 years agodividend -> divisor
Sascha Schumann [Sat, 5 Apr 2003 11:38:13 +0000 (11:38 +0000)]
dividend -> divisor

21 years agodividend -> divisor
Sascha Schumann [Sat, 5 Apr 2003 11:22:15 +0000 (11:22 +0000)]
dividend -> divisor

Submitted by: Jesus M. Castagnetto <jmcastagnetto@yahoo.com>

21 years ago Added HAVE_CONFIG_H check so the phpize build method works
Brian France [Sat, 5 Apr 2003 08:14:56 +0000 (08:14 +0000)]
Added HAVE_CONFIG_H check so the phpize build method works

21 years agoAdd IPv6 support to stream_socket_client/server()
Sara Golemon [Sat, 5 Apr 2003 02:42:12 +0000 (02:42 +0000)]
Add IPv6 support to stream_socket_client/server()

21 years agowhat? maintainer is not a valid role :)
Pierre Joye [Sat, 5 Apr 2003 01:42:55 +0000 (01:42 +0000)]
what? maintainer is not a valid role :)

21 years agoChangeLog update
<changelog@php.net> [Sat, 5 Apr 2003 01:30:51 +0000 (01:30 +0000)]
ChangeLog update

21 years agoWarning fix
Wez Furlong [Fri, 4 Apr 2003 21:09:25 +0000 (21:09 +0000)]
Warning fix

21 years agoUser shouldn't have to initialize this pass-by-ref parameter
Sara Golemon [Fri, 4 Apr 2003 20:43:36 +0000 (20:43 +0000)]
User shouldn't have to initialize this pass-by-ref parameter

21 years ago- Fixed bug #22944 (--with-java "make install" fails)
foobar [Fri, 4 Apr 2003 17:42:46 +0000 (17:42 +0000)]
- Fixed bug #22944 (--with-java "make install" fails)

21 years agoboth these entries are bad, and were never agreed upon.
Sterling Hughes [Fri, 4 Apr 2003 17:01:09 +0000 (17:01 +0000)]
both these entries are bad, and were never agreed upon.
assert() usage is a controversial concept at best.
docref() is something quite a few of us strong disagree with.  suspending
this until further discussion.

21 years agoforgot to commit this.
Sterling Hughes [Fri, 4 Apr 2003 16:00:33 +0000 (16:00 +0000)]
forgot to commit this.

21 years agoCheck that t1lib has T1_StrError
foobar [Fri, 4 Apr 2003 15:56:10 +0000 (15:56 +0000)]
Check that t1lib has T1_StrError

21 years ago- Checks specific to some extension belong in the extension's config.m4
foobar [Fri, 4 Apr 2003 15:42:54 +0000 (15:42 +0000)]
- Checks specific to some extension belong in the extension's config.m4

21 years agoIntroduce ZEND_ME() and ZEND_METHOD() macros. Use these for declaring
Andrei Zmievski [Fri, 4 Apr 2003 15:38:20 +0000 (15:38 +0000)]
Introduce ZEND_ME() and ZEND_METHOD() macros. Use these for declaring
class methods to avoid name collisions.

21 years agoFixed memleak in socket_select
Moriyoshi Koizumi [Fri, 4 Apr 2003 14:16:59 +0000 (14:16 +0000)]
Fixed memleak in socket_select

21 years agoAdded cmsghdr check. Now sockets extension can be built under cygwin.
Moriyoshi Koizumi [Fri, 4 Apr 2003 13:02:43 +0000 (13:02 +0000)]
Added cmsghdr check. Now sockets extension can be built under cygwin.

21 years agoFix namespace issues
Stanislav Malyshev [Fri, 4 Apr 2003 12:25:47 +0000 (12:25 +0000)]
Fix namespace issues