summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Replace memcpy and sprintf with smart_strs.Sascha Schumann2001-03-131-16/+12
|
* buf is gone. Don't reference it.Sascha Schumann2001-03-131-1/+1
|
* Added yaz_database. Option bit ExtendedServices set for InitRequest.Adam Dickmeiss2001-03-132-6/+53
|
* Replace another sprintfSascha Schumann2001-03-131-3/+5
|
* Nuke calls to sprintf, snprintf, strcat, strcpy and rely onSascha Schumann2001-03-132-62/+72
| | | | | memcpy and smart_strs.
* Fixing compiler warning on win32Frank M. Kromann2001-03-131-1/+1
|
* Changed emailFrank M. Kromann2001-03-132-3/+3
|
* fix bug in php_gmtime_rDaniel Beulshausen2001-03-131-2/+5
|
* @- IMPORTANT: removed /F modifier handling from preg_replace(). InsteadAndrei Zmievski2001-03-132-42/+51
| | | | | @ one should use new preg_replace_callback() function. (Andrei)
* ChangeLog update2001-03-131-0/+85
|
* NEWS update2001-03-131-0/+2
|
* changed scalar args and returns to doubles, added Ming_setScale function,Dave Hayden2001-03-132-176/+169
| | | | | added SWFTEXTFIELD_HTML flag, fixed SWFTextField_setIndentation glitch
* Forgot to add it hereColin Viebrock2001-03-121-0/+1
|
* Name length is already known.Andrei Zmievski2001-03-121-4/+3
|
* - Missed second place.Andi Gutmans2001-03-121-4/+12
|
* - Nuke snprintf()Andi Gutmans2001-03-121-2/+9
|
* - White spaceAndi Gutmans2001-03-121-1/+1
|
* - Fix by Jani Taskinen <sniper@iki.fi> for whole path also to workAndi Gutmans2001-03-121-10/+8
| | | | | with include_once()/require_once().
* Fixed prototype.Sean Bright2001-03-121-1/+1
|
* Added NEWS.Alexander Feldman2001-03-121-0/+2
|
* A small fix to make the function imageloadfont portable.Alexander Feldman2001-03-121-1/+19
|
* Prevent memory leakStanislav Malyshev2001-03-121-1/+1
|
* HEADS UP: renamed config header file in "phpize"d extensions toStig Bakken2001-03-121-1/+1
| | | | | "config.h" rather than "php_config.h".
* Use hash position with array_flipStanislav Malyshev2001-03-121-6/+8
|
* This will have to do until the docs come along.Andrei Zmievski2001-03-121-1/+1
|
* Improve zend_is_callable() to the point where it's actually useful.Andrei Zmievski2001-03-122-12/+53
| | | | | | Now it just needs to be invoked everywhere in PHP where a callback is expected.
* @- Added array_reduce(), which allows iterative reduction of an arrayAndrei Zmievski2001-03-124-3/+68
| | | | | | | | @ to a single value via a callback function. (Andrei) - Added array_reduce(), which allows iterative reduction of an array to a single value via a callback function. - Fixed usage of zend_is_callable() in PCRE.
* Use proper class name.Andrei Zmievski2001-03-121-2/+2
|
* ChangeLog update2001-03-121-0/+58
|
* Cleaning this a little bit.foobar2001-03-121-68/+73
|
* ws fixes. Plus removed unnecessary AC_MSG_ calls.foobar2001-03-121-18/+17
|
* ws fix.foobar2001-03-121-1/+1
|
* Revised version of the parseDSN function.Jon Parise2001-03-111-71/+82
| | | | | Submitted by: "Tomas V.V.Cox" <cox@idecnet.com>
* - Fix for Solaris.Andi Gutmans2001-03-112-1/+9
|
* Fixed a compatibility problem is some file functions (fgets, fputs, fread,Alexander Feldman2001-03-113-0/+72
| | | | | | | fwrite). The ANSI standard says that if a file is opened in read/write mode, fseek() should be called before switching from reading to writing and vice versa.
* Added missing alias. PR: #9550foobar2001-03-111-0/+1
|
* HAVE_BINDLIB --> HAVE_LIBBINDfoobar2001-03-114-6/+6
|
* Check for inet_aton only if libbind is not found (or inet_aton is not infoobar2001-03-111-3/+3
| | | | | libbind). Fixes bug: #8814
* 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)