summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Fix prototype/warningZeev Suraski2004-02-121-1/+1
|
* fix copy-n-past error in constructor.Wez Furlong2004-02-121-2/+2
| | | | | Spotted by Eric Colinet.
* Caching of temorary WSDL files was disabled.Dmitry Stogov2004-02-121-0/+1
|
* zend_default_classes.h -> zend_exceptions.hZeev Suraski2004-02-1217-17/+17
|
* Using zend_throw_exception_object() instead of EG(exception).Dmitry Stogov2004-02-121-2/+2
|
* Centralize exceptions code in zend_exceptions.[ch].Zeev Suraski2004-02-121-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 Stogov2004-02-121-8/+59
|
* - Fixed bug #23467 (Showing incorrect Time Zone)foobar2004-02-121-0/+4
| | | | | # patch by scottmacvicar at ntlworld dot com
* CleanupMarcus Boerger2004-02-111-3/+1
|
* There is CODING_STANDARDS..at least NEW code should respect those..foobar2004-02-111-9/+7
|
* Prevent SimpleXML from silently modifying types of variables that areZeev Suraski2004-02-111-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 France2004-02-111-0/+10
| | | | setrawcookie
* Added two new functions to set the dict-dir and data-dir options.Brian France2004-02-112-10/+36
|
* 'Touch' the file to make sure re2c is not needed.Ilia Alshanetsky2004-02-111-1/+1
|
* Fixed bug #26862 (ob_flush() followed by output_reset_rewrite_vars() mayIlia Alshanetsky2004-02-113-4/+25
| | | | | result in data loss).
* Look in the right place for libArd Biesheuvel2004-02-111-1/+3
|
* support for command line interface was improvedDmitry Stogov2004-02-114-33/+65
|
* Cache files access rights were changed.Dmitry Stogov2004-02-111-0/+4
|
* Now SoapClient uses excptions as default method for error reportingDmitry Stogov2004-02-117-111/+342
|
* Fix testRob Richards2004-02-111-0/+1
|
* Fix crash (patch by Rob Richards)Zeev Suraski2004-02-111-1/+1
|
* Fix compiler warningsRob Richards2004-02-116-19/+12
| | | | | Update tests
* Add version info about run-time client libraryArd Biesheuvel2004-02-111-7/+40
| | | | | | # A number of user crashes appear to be caused # by using incorrect combinations of libraries
* CS/WSArd Biesheuvel2004-02-112-6/+9
|
* Finally add a notice to hint people that using dl() is a bad idea...Zeev Suraski2004-02-111-0/+1
|
* removed printfs :)Georg Richter2004-02-112-3/+0
| | | | | Thx Andi!
* changed first param in mysqli_bind_paramGeorg Richter2004-02-1114-32/+18
|
* changed first parameter in mysqli_bind_param from array to stringGeorg Richter2004-02-112-25/+16
| | | | | (as discussed on berlin db meeting)
* - Removed pointless call to error_reporting()Timm Friebe2004-02-101-2/+0
|
* - fix #27197 for Greg (cellog@php.net)Jan Lehnardt2004-02-101-0/+1
|
* WSDL caching was implementedDmitry Stogov2004-02-109-106/+1231
|
* Implement get callback for SimpleXML (it now supports pre/post incrementZeev Suraski2004-02-101-1/+16
| | | | | as well as binary-assign-ops)
* wsfoobar2004-02-091-5/+5
|
* Delay creation of exec handle til it's neededFrank M. Kromann2004-02-091-82/+75
|
* Allowing to report SOAP Fault with "return new SoapFault(...)"Dmitry Stogov2004-02-095-10/+123
|
* Allowing to pass request to SoapServer::handle direct (not through ↵Dmitry Stogov2004-02-093-188/+235
| | | | $HTTP_RAW_POST_DATA).
* Fixed bug #27172 (Possible floating point exception in gmp_powm()).Ilia Alshanetsky2004-02-091-0/+5
|
* - Initial releaseTimm Friebe2004-02-091-0/+70
|
* - Changed error_reporting setting to E_ALL so we get the noticesTimm Friebe2004-02-091-0/+2
|
* - Made server name and credentials contain something obviously incorrect.Timm Friebe2004-02-081-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 APIZeev Suraski2004-02-082-2/+2
|
* Fixed bug #27171foobar2004-02-071-1/+1
|
* fixed cast warningGeorg Richter2004-02-071-1/+1
|
* fixDmitry Stogov2004-02-061-3/+3
|
* optimizationDmitry Stogov2004-02-064-32/+46
|
* Fix build with Win32 Interbase 5.xArd Biesheuvel2004-02-062-2/+10
|
* fine tunefoobar2004-02-061-3/+3
|
* WSDL cache was disabled by default (see WSDL_CACHE macro)Dmitry Stogov2004-02-066-225/+280
| | | | | WSDL related memory leaks were fixed
* Free XML documents after WSDL parsing (they no longer need).Dmitry Stogov2004-02-068-265/+255
|
* prefer != "no" over = "yes". (it doesn't really matter for ext/soap, butWez Furlong2004-02-061-1/+1
| | | | | it's still the best practice).