Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix prototype/warning | Zeev Suraski | 2004-02-12 | 1 | -1/+1 |
| | |||||
* | fix copy-n-past error in constructor. | Wez Furlong | 2004-02-12 | 1 | -2/+2 |
| | | | | | Spotted by Eric Colinet. | ||||
* | Caching of temorary WSDL files was disabled. | Dmitry Stogov | 2004-02-12 | 1 | -0/+1 |
| | |||||
* | zend_default_classes.h -> zend_exceptions.h | Zeev Suraski | 2004-02-12 | 17 | -17/+17 |
| | |||||
* | Using zend_throw_exception_object() instead of EG(exception). | Dmitry Stogov | 2004-02-12 | 1 | -2/+2 |
| | |||||
* | Centralize exceptions code in zend_exceptions.[ch]. | Zeev Suraski | 2004-02-12 | 1 | -1/+1 |
| | | | | | | | | Remove zend_default_classes.h (use zend_exceptions.h instead) NOTE: This currently breaks the build, fixes to php-src and pecl coming soon | ||||
* | "Runtime Configuration" and "Exceptions" were added. | Dmitry Stogov | 2004-02-12 | 1 | -8/+59 |
| | |||||
* | - Fixed bug #23467 (Showing incorrect Time Zone) | foobar | 2004-02-12 | 1 | -0/+4 |
| | | | | | # patch by scottmacvicar at ntlworld dot com | ||||
* | Cleanup | Marcus Boerger | 2004-02-11 | 1 | -3/+1 |
| | |||||
* | There is CODING_STANDARDS..at least NEW code should respect those.. | foobar | 2004-02-11 | 1 | -9/+7 |
| | |||||
* | Prevent SimpleXML from silently modifying types of variables that are | Zeev Suraski | 2004-02-11 | 1 | -0/+11 |
| | | | | | | | | | | | | | | | | assigned to its objects. Implementation notes for overloaded object modules: - If you return a zval which is not otherwise referenced by the extension or the engine's symbol table, its reference count should be 0. - If you receive a value zval in write_property/write_dimension, you may only modify it if its reference count is 1. Otherwise, you must create a copy of that zval before making any changes. You should NOT modify the reference count of the value passed to you. Have fun! | ||||
* | Added checks for invalid characters in a cookie name or cookie data from ↵ | Brian France | 2004-02-11 | 1 | -0/+10 |
| | | | | setrawcookie | ||||
* | Added two new functions to set the dict-dir and data-dir options. | Brian France | 2004-02-11 | 2 | -10/+36 |
| | |||||
* | 'Touch' the file to make sure re2c is not needed. | Ilia Alshanetsky | 2004-02-11 | 1 | -1/+1 |
| | |||||
* | Fixed bug #26862 (ob_flush() followed by output_reset_rewrite_vars() may | Ilia Alshanetsky | 2004-02-11 | 3 | -4/+25 |
| | | | | | result in data loss). | ||||
* | Look in the right place for lib | Ard Biesheuvel | 2004-02-11 | 1 | -1/+3 |
| | |||||
* | support for command line interface was improved | Dmitry Stogov | 2004-02-11 | 4 | -33/+65 |
| | |||||
* | Cache files access rights were changed. | Dmitry Stogov | 2004-02-11 | 1 | -0/+4 |
| | |||||
* | Now SoapClient uses excptions as default method for error reporting | Dmitry Stogov | 2004-02-11 | 7 | -111/+342 |
| | |||||
* | Fix test | Rob Richards | 2004-02-11 | 1 | -0/+1 |
| | |||||
* | Fix crash (patch by Rob Richards) | Zeev Suraski | 2004-02-11 | 1 | -1/+1 |
| | |||||
* | Fix compiler warnings | Rob Richards | 2004-02-11 | 6 | -19/+12 |
| | | | | | Update tests | ||||
* | Add version info about run-time client library | Ard Biesheuvel | 2004-02-11 | 1 | -7/+40 |
| | | | | | | # A number of user crashes appear to be caused # by using incorrect combinations of libraries | ||||
* | CS/WS | Ard Biesheuvel | 2004-02-11 | 2 | -6/+9 |
| | |||||
* | Finally add a notice to hint people that using dl() is a bad idea... | Zeev Suraski | 2004-02-11 | 1 | -0/+1 |
| | |||||
* | removed printfs :) | Georg Richter | 2004-02-11 | 2 | -3/+0 |
| | | | | | Thx Andi! | ||||
* | changed first param in mysqli_bind_param | Georg Richter | 2004-02-11 | 14 | -32/+18 |
| | |||||
* | changed first parameter in mysqli_bind_param from array to string | Georg Richter | 2004-02-11 | 2 | -25/+16 |
| | | | | | (as discussed on berlin db meeting) | ||||
* | - Removed pointless call to error_reporting() | Timm Friebe | 2004-02-10 | 1 | -2/+0 |
| | |||||
* | - fix #27197 for Greg (cellog@php.net) | Jan Lehnardt | 2004-02-10 | 1 | -0/+1 |
| | |||||
* | WSDL caching was implemented | Dmitry Stogov | 2004-02-10 | 9 | -106/+1231 |
| | |||||
* | Implement get callback for SimpleXML (it now supports pre/post increment | Zeev Suraski | 2004-02-10 | 1 | -1/+16 |
| | | | | | as well as binary-assign-ops) | ||||
* | ws | foobar | 2004-02-09 | 1 | -5/+5 |
| | |||||
* | Delay creation of exec handle til it's needed | Frank M. Kromann | 2004-02-09 | 1 | -82/+75 |
| | |||||
* | Allowing to report SOAP Fault with "return new SoapFault(...)" | Dmitry Stogov | 2004-02-09 | 5 | -10/+123 |
| | |||||
* | Allowing to pass request to SoapServer::handle direct (not through ↵ | Dmitry Stogov | 2004-02-09 | 3 | -188/+235 |
| | | | | $HTTP_RAW_POST_DATA). | ||||
* | Fixed bug #27172 (Possible floating point exception in gmp_powm()). | Ilia Alshanetsky | 2004-02-09 | 1 | -0/+5 |
| | |||||
* | - Initial release | Timm Friebe | 2004-02-09 | 1 | -0/+70 |
| | |||||
* | - Changed error_reporting setting to E_ALL so we get the notices | Timm Friebe | 2004-02-09 | 1 | -0/+2 |
| | |||||
* | - Made server name and credentials contain something obviously incorrect. | Timm Friebe | 2004-02-08 | 1 | -4/+4 |
| | | | | | | | - Made charset parameter default to "iso_1" (fixed "Sybase: Unable to update character set." warnings which were failing all tests when the official Sybase libraries were used - FreeTDS ignores this). | ||||
* | Update to new API | Zeev Suraski | 2004-02-08 | 2 | -2/+2 |
| | |||||
* | Fixed bug #27171 | foobar | 2004-02-07 | 1 | -1/+1 |
| | |||||
* | fixed cast warning | Georg Richter | 2004-02-07 | 1 | -1/+1 |
| | |||||
* | fix | Dmitry Stogov | 2004-02-06 | 1 | -3/+3 |
| | |||||
* | optimization | Dmitry Stogov | 2004-02-06 | 4 | -32/+46 |
| | |||||
* | Fix build with Win32 Interbase 5.x | Ard Biesheuvel | 2004-02-06 | 2 | -2/+10 |
| | |||||
* | fine tune | foobar | 2004-02-06 | 1 | -3/+3 |
| | |||||
* | WSDL cache was disabled by default (see WSDL_CACHE macro) | Dmitry Stogov | 2004-02-06 | 6 | -225/+280 |
| | | | | | WSDL related memory leaks were fixed | ||||
* | Free XML documents after WSDL parsing (they no longer need). | Dmitry Stogov | 2004-02-06 | 8 | -265/+255 |
| | |||||
* | prefer != "no" over = "yes". (it doesn't really matter for ext/soap, but | Wez Furlong | 2004-02-06 | 1 | -1/+1 |
| | | | | | it's still the best practice). |