summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* ChangeLog update2001-03-111-0/+61
|
* If AC_CHECK_LIB fails, assume that --with-openssl is neededfoobar2001-03-111-1/+6
|
* This should fix the problems with not including -lz.foobar2001-03-101-0/+5
|
* * only register the destructor if it existsStig Bakken2001-03-101-4/+30
|
* - WhitespaceAndi Gutmans2001-03-101-1/+1
|
* just reversed a previous patch.Rui Hirokawa2001-03-101-1/+0
|
* ChangeLog update2001-03-101-0/+38
|
* NEWS update2001-03-101-0/+2
|
* initialized some strings in global variable structure.Rui Hirokawa2001-03-102-2/+11
|
* Adding a new function odbc_next_result() allowing the query to return more ↵Frank M. Kromann2001-03-092-1/+51
| | | | | | | than one result. This can be done with a stored procedure or by sending more than one select to the server.
* Adding a new function mssql_next_result() allowing the query to return more ↵Frank M. Kromann2001-03-092-148/+133
| | | | | | | than one result. This can be done with a stored procedure or by sending more than one select to the server.
* @- Fixed argument checking for call_user_func* functions and allowedAndrei Zmievski2001-03-091-4/+14
| | | | | @ specifying array($obj, 'method') syntax for call_user_func_array. (Andrei)
* ChangeLog update2001-03-091-0/+77
|
* Formatting and minor inline doc changes.Ulf Wendel2001-03-081-0/+1
|
* Added a basic Cache_Error class.Ulf Wendel2001-03-081-1/+3
|
* Better use buffer_to_buffer, since zval is really buffer, not string (it canStanislav Malyshev2001-03-081-2/+3
| | | | | | contain \0's and not end in \0). # and recode_string is recode_buffer_to_buffer internally anyways
* *** empty log message ***Zeev Suraski2001-03-081-1/+1
|
* Point people to the Windows mailing list...Zeev Suraski2001-03-081-0/+8
|
* ChangeLog update2001-03-081-0/+53
|
* add missing globals fetchesDaniel Beulshausen2001-03-071-0/+3
|
* Add missing #define'sZeev Suraski2001-03-071-0/+30
|
* Removing a compiler warningFrank M. Kromann2001-03-071-1/+1
|
* That came from php-gtk.Andrei Zmievski2001-03-071-1/+0
|
* Fixed the help for other options too.foobar2001-03-071-2/+2
|
* Added support for Zeus SSL client certificate information.Ben Mansell2001-03-071-0/+61
| | | | | | | Added SERVER_SIGNATURE to the environment. Submitted by: daniel@zeus.com
* Update .ini's and NEWSZeev Suraski2001-03-074-0/+16
|
* Make parent:: work in runtime bindings as wellZeev Suraski2001-03-072-8/+12
|
* ChangeLog update2001-03-071-0/+107
|
* NEWS update2001-03-071-0/+1
|
* Implement internal output compression?\0020:wqZeev Suraski2001-03-062-34/+103
|
* Fix freeing of buffersZeev Suraski2001-03-062-18/+30
|
* Fixes to internal output bufferingZeev Suraski2001-03-062-10/+18
|
* We actually only need AC_PROG_LEX here.Sascha Schumann2001-03-061-1/+1
|
* Replace AM_PROG_LEX with a separated call to AC_PROG_LEX and AC_DECL_YYTEXT.Sascha Schumann2001-03-062-4/+6
| | | | | | The latter is only called, if lex was found, so that PHP configures now on setups without (f)lex.
* More internal output buffering fixesZeev Suraski2001-03-064-12/+12
|
* Fix internal output bufferingZeev Suraski2001-03-064-10/+10
|
* Initial work on internal output handlers - should be much quickerZeev Suraski2001-03-064-24/+86
|
* Whitespace only.Sebastian Bergmann2001-03-061-20/+9
|
* Avoid using ret uninitializedZeev Suraski2001-03-061-1/+1
|
* Thread hashtable was being initialized with a size of 1! Changed to 128 asBen Mansell2001-03-061-1/+5
| | | | | | | | a more sensible number. # Also could change the 'expected resources' parameter from 1, but I # haven't tested that bit yet ----------------------------------------------------------------------
* Speedup for pthread implementation. We make use of thread local storageBen Mansell2001-03-061-13/+60
| | | | | | | to allow access to the current thread's resources without having to obtain the memory mutex and traverse our hash table. This is a big performance win!
* Avoid writing to error_log in case of aborted connections.Zeev Suraski2001-03-061-3/+1
|
* Don't insert empty path if PHPRC is emptyStanislav Malyshev2001-03-061-1/+5
|
* Typo.Sean Bright2001-03-061-2/+2
| | | | | # I don't know where I got 4.02 from
* get_meta_tags now allows attributes that are not quoted as well as thoseSean Bright2001-03-061-3/+39
| | | | | | that are. It follows the HTML 4.01 specification for attribute values outlined here -> http://www.w3.org/TR/html4/intro/sgmltut.html#h-3.2.2
* ChangeLog update2001-03-061-0/+20
|
* fixed bug in PDF_getbuffer (happend only on Windows)Rainer Schaaf2001-03-051-4/+24
| | | | | | When using PDFlib V4.0 the pdf_set(grey/rgbcolor) functions are replaced by the PDFlib V4.0 function pdf_setcolor
* Fix help text for -ffoobar2001-03-051-5/+2
|
* ChangeLog update2001-03-051-0/+45
|
* Can't output any error messages if there isn't any function initializedfoobar2001-03-051-3/+3
| | | | | | to do it.. # Bug report: #7650