summaryrefslogtreecommitdiff
path: root/ext/standard
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug: #16638.foobar2002-07-131-2/+1
|
* - Made the trim functions use same base function. (less code :)foobar2002-07-132-65/+35
| | | | | | | - Renamed php_trim2 -> php_trim (not used anyplace else, yet) - Made php_trim abit more usable for external use. (not necessary to use zvals with it anymore)
* - Fixed compile (bug #18297) on such systems which define uchar.foobar2002-07-121-8/+6
|
* Fixed bug: #16637, username/password needs to be urlencoded.foobar2002-07-111-0/+4
|
* @Fixed socket_set_timeout on win32 (Jason, Edin, Jani)Jason Greene2002-07-102-4/+3
|
* - Add TSRMLS_DC to prototype.Andi Gutmans2002-07-081-1/+1
|
* - Fix TSRMLS_* stuffAndi Gutmans2002-07-083-5/+5
|
* Unify error messagesDerick Rethans2002-07-0819-117/+116
|
* Unify error messagesDerick Rethans2002-07-081-2/+2
|
* - Add warning to is_*() functions if more than one argument was passedDerick Rethans2002-07-081-0/+1
|
* Silence warningDerick Rethans2002-07-081-1/+1
|
* Unify error messagesDerick Rethans2002-07-081-60/+60
|
* - Fix for bug #14580: Made key() binary safeDerick Rethans2002-07-081-3/+4
|
* fix win32 buildSterling Hughes2002-07-071-52/+34
|
* Fix warning.Sebastian Bergmann2002-07-071-1/+1
|
* * fix segfault in case of odd version numbersStig Bakken2002-07-051-3/+3
|
* (PHP version_compare) added "alpha" and "beta", make tests passStig Bakken2002-07-051-25/+52
|
* Adding missing prototypeFrank M. Kromann2002-07-031-0/+4
|
* Add sapi_header_op interface which supersedes the sapi_add_header and _exSascha Schumann2002-07-031-10/+12
| | | | | | | | | | | | | | | | | | | | | calls. Revert the change to the sapi_add_header_ex interface. Fix various bugs: 1. header("HTTP/1.0 306 foo"); header("Location: absolute-uri"); did not work in combination with several SAPI modules, because http_status_line was never properly reset. And thus, all SAPI modules which looked at http_status_line ignored the changed http_response_code. 2. The CGI SAPI did not send out the HTTP status line at all, if http_status_line had not been set explicitly by calling header("HTTP/1.0 200 foo");
* - Fix windows buildDerick Rethans2002-07-033-0/+12
| | | | | #- I could not test this, please try!
* Fix the nasty crash. And Sterling..test next time before you commit?foobar2002-07-031-4/+8
|
* Add default arguments to new internal mail function.Frank M. Kromann2002-07-021-1/+1
|
* use access instead of manually determining file permissions..Sterling Hughes2002-07-021-21/+40
|
* - Be nice to users and allow them to check if the mail was sendDerick Rethans2002-07-021-1/+1
|
* - Disable 5th parameter to mail in safemodeDerick Rethans2002-07-021-5/+9
| | | | | @- Disabled the fifth parameter to the mail function in safemode. (Derick)
* - Fix for bug #15547 (Patch by Justin Garrett <usjgarrett@byu.edu>)Derick Rethans2002-07-021-0/+5
|
* - No C++ commentsDerick Rethans2002-07-012-9/+9
|
* Fix some 8bit issues with IRCG nickname encoding andSascha Schumann2002-06-291-2/+2
| | | | | Change the underlying interface of smart_str to accept unsigned char.
* - Fix for bug #17654Derick Rethans2002-06-291-1/+1
|
* fix leakThies C. Arntzen2002-06-292-4/+4
|
* Update configure line in phpinfo() after re-running configure withoutSander Roobol2002-06-271-0/+1
| | | | | running make clean first, bug #18012.
* - And the SAPI tooDerick Rethans2002-06-261-1/+2
|
* - Update creditsDerick Rethans2002-06-261-6/+9
|
* - No idea why this wasn't crashing before.Andi Gutmans2002-06-261-1/+1
|
* bits/channels for gifMarcus Boerger2002-06-251-3/+5
|
* missing return valueMarcus Boerger2002-06-241-0/+1
|
* register IMAGETYPE_<xxx> constants in image.c as they are neededMarcus Boerger2002-06-243-1/+25
| | | | | there.
* @GetImageSize now allways set fields unknown to 0 and new ImagetypeMarcus Boerger2002-06-242-19/+85
| | | | | @iff. (Marcus)
* -imagetype2mimetype renamed to image_type_to_mime_typeMarcus Boerger2002-06-233-10/+10
|
* -exif versionMarcus Boerger2002-06-221-0/+1
| | | | | | -missing constant (and notice) -corrected error messages
* @GetImageSize now returns additional index 'MimeType' and new functionMarcus Boerger2002-06-223-1/+51
| | | | | | | @imagetype2mimetype to convert php imagetypes to mime-types. (Marcus) #the reason why i export php_imagetype2mimetype is that i use that for #exif, too. Followup example will explain why.
* ws fixMarcus Boerger2002-06-221-29/+29
|
* - Added a new parameter to the header() function which overrides the HTTPDerick Rethans2002-06-211-5/+6
| | | | | | | response code. @- Added a new parameter to the header() function which overrides the HTTP @ response code. (Derick)
* Made the API versions appear better on phpinfo();Sander Roobol2002-06-191-11/+6
|
* Made array_unique() always keep the first occurrences of duplicates,Stig Venaas2002-06-181-9/+20
| | | | | making the behavior easier to understand, and maybe more useful.
* - WS-fixesJan Lehnardt2002-06-181-59/+59
|
* - fixed bug in enclosure handling (was still hardcoded to '"' in one place)Hartmut Holzgraefe2002-06-181-8/+2
| | | | | - added possibility to pass empty enclosure if you really don't want one
* Fixed stripslashes when magic_quotes_sybase is enabled, and add a test forSander Roobol2002-06-182-8/+25
| | | | | | add- and stripslashes(). # this time without cvs messing up and aborting, hopefully :)
* Fix stripslashes when magic_quotes_sybase is enabled, and add a test forSander Roobol2002-06-181-0/+21
| | | | | add- and stripslashes().
* - Fix for bug #16065Derick Rethans2002-06-181-11/+3
|