| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Latest zend updates | Marcus Boerger | 2003-08-03 | 4 | -42/+59 |
| | | |||||
| * | Fix crash | Marcus Boerger | 2003-08-03 | 1 | -2/+6 |
| | | |||||
| * | Fix test and add missing initialization | Marcus Boerger | 2003-08-03 | 1 | -1/+10 |
| | | |||||
| * | Ensure functions have a valid access level | Zeev Suraski | 2003-08-03 | 1 | -0/+3 |
| | | |||||
| * | Default to public | Zeev Suraski | 2003-08-03 | 1 | -1/+5 |
| | | |||||
| * | Not needed, will be copied from ptr->flags later | Marcus Boerger | 2003-08-03 | 1 | -1/+0 |
| | | |||||
| * | let's go with b3x | Tomas V.V.Cox | 2003-08-03 | 1 | -1/+1 |
| | | |||||
| * | +* Made package dependency checking back to work | Tomas V.V.Cox | 2003-08-03 | 1 | -0/+2 |
| | | | | | | +* Added support for spaces in path names (Greg) | ||||
| * | Added support for spaces in path names (thanks Greg!) | Tomas V.V.Cox | 2003-08-03 | 5 | -15/+17 |
| | | |||||
| * | TSRM issue in windows compiling | Uwe Schindler | 2003-08-03 | 1 | -0/+1 |
| | | |||||
| * | Add missing arg info | Marcus Boerger | 2003-08-03 | 1 | -0/+4 |
| | | |||||
| * | Don't let the shell escape quotes | Tomas V.V.Cox | 2003-08-03 | 1 | -1/+1 |
| | | |||||
| * | Style & WS fixes | Moriyoshi Koizumi | 2003-08-03 | 2 | -2/+2 |
| | | |||||
| * | Fix build | Marcus Boerger | 2003-08-03 | 2 | -2/+2 |
| | | |||||
| * | Fix warning | Marcus Boerger | 2003-08-03 | 1 | -1/+1 |
| | | |||||
| * | Reallow build | Marcus Boerger | 2003-08-03 | 2 | -4/+4 |
| | | |||||
| * | Use new infrastructure. | Zeev Suraski | 2003-08-03 | 21 | -107/+190 |
| | | | | | | There are bound to be some messups, please report build/runtime bugs! | ||||
| * | Remove unnecessary macro | Zeev Suraski | 2003-08-03 | 1 | -1/+0 |
| | | |||||
| * | ntroduce infrastructure for supplying information about arguments, | Zeev Suraski | 2003-08-03 | 14 | -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't | Moriyoshi Koizumi | 2003-08-03 | 1 | -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 again | Tomas V.V.Cox | 2003-08-03 | 1 | -0/+1 |
| | | | | | | (Seems that this line got lost at some point) | ||||
| * | Fix Win32 Build because of missint TSRM stuff | Uwe Schindler | 2003-08-03 | 1 | -0/+1 |
| | | |||||
| * | No need for this initialization - this function initializes all of the | Zeev Suraski | 2003-08-03 | 1 | -1/+0 |
| | | | | | | elements of zend_internal_function | ||||
| * | Clean up. extended_value can only contain either ZEND_UNSET_DIM or | Zeev Suraski | 2003-08-03 | 1 | -25/+21 |
| | | | | | | ZEND_UNSET_OBJ. | ||||
| * | Generalize fetch_class | Zeev Suraski | 2003-08-03 | 5 | -76/+89 |
| | | |||||
| * | ChangeLog update | 2003-08-03 | 1 | -0/+18 | |
| | | |||||
| * | Initialize all struct members: Necessary for reflection | Marcus Boerger | 2003-08-02 | 1 | -0/+1 |
| | | |||||
| * | Fixed bug #24177 (Status not set correctly after flush() in Apache 2) | Ilia Alshanetsky | 2003-08-02 | 2 | -1/+5 |
| | | |||||
| * | fix invalid $fp check (by nicox@php.net) | Tomas V.V.Cox | 2003-08-02 | 1 | -1/+1 |
| | | |||||
| * | upgrade-all back to work | Tomas V.V.Cox | 2003-08-02 | 1 | -1/+2 |
| | | |||||
| * | trailing ws | Tomas V.V.Cox | 2003-08-02 | 0 | -0/+0 |
| | | |||||
| * | Show interfaces | Marcus Boerger | 2003-08-02 | 2 | -2/+16 |
| | | |||||
| * | Use correct macro | Marcus Boerger | 2003-08-02 | 2 | -8/+8 |
| | | |||||
| * | fix usage of instanceof here too | Wez Furlong | 2003-08-02 | 1 | -3/+4 |
| | | |||||
| * | Fix warning | Marcus Boerger | 2003-08-02 | 1 | -1/+2 |
| | | |||||
| * | ChangeLog update | 2003-08-02 | 1 | -0/+8 | |
| | | |||||
| * | Fixed bug #22072 (Apache2 sapis do not detect aborted connections). | Ilia Alshanetsky | 2003-08-01 | 2 | -6/+6 |
| | | |||||
| * | better fix... | Wez Furlong | 2003-08-01 | 1 | -3/+6 |
| | | |||||
| * | Preserve exit status for non-php execution modes. | Ilia Alshanetsky | 2003-08-01 | 2 | -2/+6 |
| | | |||||
| * | Fix "O" format for zend_parse_parameters | Wez Furlong | 2003-08-01 | 1 | -2/+2 |
| | | |||||
| * | Fixed bug #23509 (exit code lost when exit() called from | Ilia Alshanetsky | 2003-08-01 | 2 | -4/+2 |
| | | | | | | register_shutdown_function()) | ||||
| * | Removed the unnecessary check of array_init() return value. | Andrey Hristov | 2003-08-01 | 1 | -6/+2 |
| | | |||||
| * | Add missing .cvsignore files. | Edin Kadribasic | 2003-08-01 | 0 | -0/+0 |
| | | |||||
| * | Segfault fix. | John Coggeshall | 2003-08-01 | 1 | -6/+12 |
| | | |||||
| * | Fixed a number of memleaks and cleaned up the code a bit. | John Coggeshall | 2003-08-01 | 2 | -177/+210 |
| | | |||||
| * | ChangeLog update | 2003-08-01 | 1 | -0/+17 | |
| | | |||||
| * | Adding the tidy extension to PECL | John Coggeshall | 2003-08-01 | 18 | -0/+2707 |
| | | |||||
| * | Only register server variables when needed. | Ilia Alshanetsky | 2003-07-31 | 1 | -1/+1 |
| | | |||||
| * | Fixed bug #24883 (variables created through register_globals, ignore | Ilia Alshanetsky | 2003-07-31 | 1 | -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 and | Ilia Alshanetsky | 2003-07-31 | 1 | -10/+13 |
| | | | | | | output buffering in addition to session.use_trans_sid is used). | ||||
