summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Latest zend updatesMarcus Boerger2003-08-034-42/+59
|
* Fix crashMarcus Boerger2003-08-031-2/+6
|
* Fix test and add missing initializationMarcus Boerger2003-08-031-1/+10
|
* Ensure functions have a valid access levelZeev Suraski2003-08-031-0/+3
|
* Default to publicZeev Suraski2003-08-031-1/+5
|
* Not needed, will be copied from ptr->flags laterMarcus Boerger2003-08-031-1/+0
|
* let's go with b3xTomas V.V.Cox2003-08-031-1/+1
|
* +* Made package dependency checking back to workTomas V.V.Cox2003-08-031-0/+2
| | | | | +* Added support for spaces in path names (Greg)
* Added support for spaces in path names (thanks Greg!)Tomas V.V.Cox2003-08-035-15/+17
|
* TSRM issue in windows compilingUwe Schindler2003-08-031-0/+1
|
* Add missing arg infoMarcus Boerger2003-08-031-0/+4
|
* Don't let the shell escape quotesTomas V.V.Cox2003-08-031-1/+1
|
* Style & WS fixesMoriyoshi Koizumi2003-08-032-2/+2
|
* Fix buildMarcus Boerger2003-08-032-2/+2
|
* Fix warningMarcus Boerger2003-08-031-1/+1
|
* Reallow buildMarcus Boerger2003-08-032-4/+4
|
* Use new infrastructure.Zeev Suraski2003-08-0321-107/+190
| | | | | There are bound to be some messups, please report build/runtime bugs!
* Remove unnecessary macroZeev Suraski2003-08-031-1/+0
|
* ntroduce infrastructure for supplying information about arguments,Zeev Suraski2003-08-0314-194/+241
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | including: - Whether or not to pass by ref (replaces the old arg_types, with arg_info) - Argument name (for future use, maybe introspection) - Class/Interface name (for type hints) - If a class/interface name is available, whether to allow a null instance Both user and builtin functions share the same data structures. To declare a builtin function that expects its first arg to be an instance of class 'Person', its second argument as a regular arg, and its third by reference, use: ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0) ZEND_ARG_OBJ_INFO(0, someone, Person, 1) ZEND_ARG_PASS_INFO(0) ZEND_ARG_PASS_INFO(1) ZEND_END_ARG_INFO(); and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family of macros. The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref. The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat the arguments for which there's no explicit information as pass by reference or not. The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
* Disable the test temporarily because "-d" flags in the command line doesn'tMoriyoshi Koizumi2003-08-031-0/+1
| | | | | | take effect under CGI mode. (See the relevant portion of cgi_main.c that begins at line 996)
* Made package dep checking to work againTomas V.V.Cox2003-08-031-0/+1
| | | | | (Seems that this line got lost at some point)
* Fix Win32 Build because of missint TSRM stuffUwe Schindler2003-08-031-0/+1
|
* No need for this initialization - this function initializes all of theZeev Suraski2003-08-031-1/+0
| | | | | elements of zend_internal_function
* Clean up. extended_value can only contain either ZEND_UNSET_DIM orZeev Suraski2003-08-031-25/+21
| | | | | ZEND_UNSET_OBJ.
* Generalize fetch_classZeev Suraski2003-08-035-76/+89
|
* ChangeLog update2003-08-031-0/+18
|
* Initialize all struct members: Necessary for reflectionMarcus Boerger2003-08-021-0/+1
|
* Fixed bug #24177 (Status not set correctly after flush() in Apache 2)Ilia Alshanetsky2003-08-022-1/+5
|
* fix invalid $fp check (by nicox@php.net)Tomas V.V.Cox2003-08-021-1/+1
|
* upgrade-all back to workTomas V.V.Cox2003-08-021-1/+2
|
* trailing wsTomas V.V.Cox2003-08-020-0/+0
|
* Show interfacesMarcus Boerger2003-08-022-2/+16
|
* Use correct macroMarcus Boerger2003-08-022-8/+8
|
* fix usage of instanceof here tooWez Furlong2003-08-021-3/+4
|
* Fix warningMarcus Boerger2003-08-021-1/+2
|
* ChangeLog update2003-08-021-0/+8
|
* Fixed bug #22072 (Apache2 sapis do not detect aborted connections).Ilia Alshanetsky2003-08-012-6/+6
|
* better fix...Wez Furlong2003-08-011-3/+6
|
* Preserve exit status for non-php execution modes.Ilia Alshanetsky2003-08-012-2/+6
|
* Fix "O" format for zend_parse_parametersWez Furlong2003-08-011-2/+2
|
* Fixed bug #23509 (exit code lost when exit() called fromIlia Alshanetsky2003-08-012-4/+2
| | | | | register_shutdown_function())
* Removed the unnecessary check of array_init() return value.Andrey Hristov2003-08-011-6/+2
|
* Add missing .cvsignore files.Edin Kadribasic2003-08-010-0/+0
|
* Segfault fix.John Coggeshall2003-08-011-6/+12
|
* Fixed a number of memleaks and cleaned up the code a bit.John Coggeshall2003-08-012-177/+210
|
* ChangeLog update2003-08-011-0/+17
|
* Adding the tidy extension to PECLJohn Coggeshall2003-08-0118-0/+2707
|
* Only register server variables when needed.Ilia Alshanetsky2003-07-311-1/+1
|
* Fixed bug #24883 (variables created through register_globals, ignoreIlia Alshanetsky2003-07-311-14/+39
| | | | | | | | | gpc_order and variables_order). Prevent multiple registration of ENV & SERVER variables when more then one is specified. Prevent multiple addition of GET/POST/COOKIE variables when building _REQUEST.
* Fixed bug #22154 (Possible crash when memory_limit is reached andIlia Alshanetsky2003-07-311-10/+13
| | | | | output buffering in addition to session.use_trans_sid is used).