summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix #4928Zeev Suraski2000-06-092-4/+9
| | | | | Be *CAREFUL* with the _ex API, guys!
* - Remove old obsolete code.Andi Gutmans2000-06-091-20/+0
|
* - Make unset consistent with the way array offsets workAndi Gutmans2000-06-091-5/+20
|
* Handle unset with empty keyStanislav Malyshev2000-06-091-0/+3
|
* Make chmod in safe mode not allow SUID bitsStanislav Malyshev2000-06-091-2/+10
|
* - Change register_internal_class to zend_register_internal_class forAndi Gutmans2000-06-099-14/+14
| | | | | | - consistency. - Andrei: I'm still thinking about the _ex you want me to implement
* - Use PHP_WIN32Andi Gutmans2000-06-091-1/+1
|
* - As Sascha requested.Jouni Ahto2000-06-094-141/+36
|
* (php_wddx_deserialize_ex) return SUCCESS/FAILUREAndrei Zmievski2000-06-093-31/+29
| | | | | Use that return value in WDDX session deserializer.
* Change COMPILE_DL to COMPILE_DL_EXTNAMESascha Schumann2000-06-091-1/+1
|
* - Added skeleton module creating script.Jouni Ahto2000-06-094-0/+363
|
* - Parse errors in the php.ini files under Windows will no longer mess up theZeev Suraski2000-06-093-12/+34
| | | | | HTTP headers in CGI mode and are now displayed in a message box
* ChangeLog update2000-06-091-0/+54
|
* NEWS update2000-06-091-0/+3
|
* Move back everything to where it belongs...Zeev Suraski2000-06-091-7/+9
|
* This should no longer be necessaryZeev Suraski2000-06-091-4/+0
|
* This seems to be a valid report, can't hurt anyway (PR 4252)Zeev Suraski2000-06-091-1/+1
|
* Restore the check for the trailing slash. Windows does not apply s#/+#/# ↵Zeev Suraski2000-06-091-1/+8
| | | | (PR 4375)
* You need to include dynlib.mk in Makefile.in.Sascha Schumann2000-06-091-1/+1
|
* The default serializer is still php.Sascha Schumann2000-06-091-1/+1
|
* Automatically recover from a failed attempt to decode a session object.Sascha Schumann2000-06-091-4/+17
| | | | | PR: #4886
* Fix format strings. cache_expire's type was changed to long.Sascha Schumann2000-06-081-2/+2
|
* Somehow I screwed up the find parameters while doing the original change.Sascha Schumann2000-06-081-1/+1
| | | | | s/global.h/php_global.h/
* Include php_global.h, instead of global.hAndrei Zmievski2000-06-081-1/+1
|
* Update .dsp'sZeev Suraski2000-06-081-3/+3
|
* Added more server variables to the HTTP_SERVER_VARS array, all theAnthony Whitehead2000-06-081-0/+21
| | | | | | variables listed in the structs in nsapi.c should work now. Untested on Windows platform.
* @- Fixed crash in OCIFetchStatement() when trying to read afterThies C. Arntzen2000-06-081-0/+1
| | | | | @ all data has already been read. (Thies)
* @ fopen_wrappers() are now extensible via modulesHartmut Holzgraefe2000-06-083-394/+522
| | | | | | so here it finaly is, the more general approach to fopen wrappers # see what i'll break this time
* Add PHP_BROKEN_SPRINTF check here.Sascha Schumann2000-06-081-6/+6
| | | | | Also remove unnecessary #ifdef's for PACKAGE and VERSION.
* Wipe out acconfig.h.in and rewrite some checks to use PHP_ARG_ENABLE.Sascha Schumann2000-06-086-271/+106
|
* Clean up acconfig.hSascha Schumann2000-06-082-27/+3
|
* Add a couple of castsSascha Schumann2000-06-082-4/+4
|
* ChangeLog update2000-06-081-0/+62
|
* NEWS update2000-06-081-0/+3
|
* Always define PROGRAM_NAME to avoid problems with Irix's and OpenServer'sSascha Schumann2000-06-081-2/+2
| | | | | makes.
* Add note about using PHP_ARG_WITH/ENABLESascha Schumann2000-06-081-1/+6
|
* - Fixed typo in _php_image_output (s/fp/tmp/) causing segfault.Jouni Ahto2000-06-072-111/+51
| | | | | | | - Fixed bug when calling imagejpeg() with 3 arguments, the second one empty, introduced yesterday. - Nuked even more code.
* - fixed compilation errorUwe Steinmann2000-06-071-3/+3
|
* - more removal of obsolete pdflib functions, but no changes to the phpUwe Steinmann2000-06-071-3/+3
| | | | | api
* Fix test for php_always_sharedSascha Schumann2000-06-071-1/+1
|
* - Fix Win32 buildZeev Suraski2000-06-073-2/+23
| | | | | - Nuke a warning
* - new function pdf_set_info() to replace pdf_set_info_xxx()Uwe Steinmann2000-06-072-6/+36
|
* beautifyThies C. Arntzen2000-06-071-2/+2
|
* cyscape's "current" browscap.ini file doesn't terminate the last lineHartmut Holzgraefe2000-06-071-0/+1
| | | | | | in the file with a newline character this resulted in a parse error
* Purely formatting.Andrei Zmievski2000-06-071-3/+4
|
* ChangeLog update2000-06-071-0/+120
|
* NEWS update2000-06-071-0/+5
|
* Make trim strip \0 to match php 3Rasmus Lerdorf2000-06-071-2/+2
| | | | | @ Make trim strip \0 to match php 3 (Rasmus)
* - Added functions imagewbmp(), imagecreatefromxbm().Jouni Ahto2000-06-072-249/+229
| | | | | | | | | | - Nuked a lot of duplicate code. @- Added function imagecreatefromxbm(). (Jouni) @- Added function imagewbmp(). (Jouni, based on patch from Rune Nordbøe Skillingstad) # Note: calling imagejpeg() with 3 arguments, the second one empty, # is currently broken. Fill fix tomorrow evening unless someone beats me. # Must have some sleep now, brains stopped working...
* @- Added str_pad() for padding a string with an arbitrary string on left orAndrei Zmievski2000-06-064-1/+71
| | | | | | | | | @ right. (Andrei) Added str_pad() for padding a string with an arbitrary string on left or right. # With all those macros, the code is starting to eerily resemble Perl's guts.