summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'php_4_0_4RC4'.php-4.0.4RC4SVN Migration2000-12-1413-0/+8815
|
* - Update 4.0.4 branches NEWS fileAndi Gutmans2000-12-051-0/+12
|
* Merge from HEADSascha Schumann2000-12-052-5/+5
|
* Merge entries manuallySascha Schumann2000-12-041-0/+5
|
* Merge changes from head branch.foobar2000-12-041-2/+4
|
* Merged with HEAD, 1.21Sascha Schumann2000-12-041-6/+7
|
* Merged with HEAD, 1.8Sascha Schumann2000-12-041-1/+3
|
* Merged with HEAD, 1.35Sascha Schumann2000-12-041-6/+5
|
* Merge from HEADSascha Schumann2000-12-042-104/+124
|
* Merge changes from HEAD.Sascha Schumann2000-12-041-2/+7
|
* Import the MySQL updates from the main branchZeev Suraski2000-12-031-130/+152
|
* changed run-tests.php to use 'php -q' instead of 'php -f'Hartmut Holzgraefe2000-12-033-8/+8
|
* Fix the bug with -f not filling in the $argv[] arguments.Zeev Suraski2000-12-031-30/+23
| | | | | | | I'm not sure what used to be the behavior - but the new code puts the -f argument as $argv[0], which is the Right Thing to do IMHO... Comments welcome
* Don't mislead people...Zeev Suraski2000-12-031-16/+5
|
* Commit the fix to the 4.0.4 branchZeev Suraski2000-12-031-1/+1
|
* Merge changes from HEADSascha Schumann2000-12-023-5/+3
|
* 4.0.4RC3 is coming.Sascha Schumann2000-12-022-2/+2
|
* This commit was manufactured by cvs2svn to create branch 'php_4_0_4'.SVN Migration2000-12-0217-9382/+0
|
* ChangeLog update2000-12-021-0/+75
|
* Minor cosmetic changes.David Hedbor2000-12-011-6/+5
|
* More config.m4 fixes.David Hedbor2000-12-011-7/+11
|
* Updated config test to also work with debian pike 7 cvs etc.David Hedbor2000-12-011-3/+48
|
* Fixed some protos.Egon Schmid2000-12-011-76/+38
|
* Fixed some protos.Egon Schmid2000-12-011-20/+22
|
* Get rid of HAVE_EXTNAME. This dates back to PHP 3 where source filesSascha Schumann2000-12-013-19/+0
| | | | | were unconditionally compiled. It is not necessary in PHP 4.
* Fixed some protos.Egon Schmid2000-12-011-16/+16
|
* Add newline. Recent GCC snapshots segfault, if the input file is completelySascha Schumann2000-12-011-0/+1
| | | | | empty. Should I report this? This appears to be quite lame.
* Please avoid potential buffer overflows in new code. If you dealSascha Schumann2000-12-011-4/+6
| | | | | | with strings, consider storing the string length along with the string data. That will make your life easier.
* Remove *.oSascha Schumann2000-12-011-1/+0
|
* - Fix swf build issues from bug #7612Andi Gutmans2000-12-012-9/+7
| | | | | - Not tested! Someone please compile it.
* ChangeLog update2000-12-011-0/+18
|
* Fixing bug 8061. Position counter starts a 0 but was compared with length.Frank M. Kromann2000-12-011-1/+1
| | | | | oops. the fix should be made twice.
* Fixing bug 8061. Position counter starts a 0 but was compared with length.Frank M. Kromann2000-12-011-1/+1
|
* Beautifying of phpinfo().foobar2000-12-011-8/+12
|
* Changed presentation of default values for textsize and textlimit in phpinfo().Frank M. Kromann2000-11-301-7/+21
| | | | | the value -1 means "Server default"
* updated documentation and configurationDavid Eriksson2000-11-302-5/+8
|
* changed variable names to *_class_functionsDavid Eriksson2000-11-302-4/+4
|
* fix configure --help option name...Sterling Hughes2000-11-301-1/+1
|
* ChangeLog update2000-11-301-0/+54
|
* NEWS update2000-11-301-0/+2
|
* The ODBC extension looks for settings named odbc. and not uodbc.Frank M. Kromann2000-11-293-27/+27
|
* Removed old version 6.5 code. Clinet Libraries for SQL Server 7.0 can be ↵Frank M. Kromann2000-11-293-104/+21
| | | | | | | used with version 6,5. Minor changes to use som Zend macros to define globals.
* Fixing wring resource handle returned from mssql_query().Frank M. Kromann2000-11-291-3/+2
| | | | | The error was introduced when adding mssql_fetch_batch().
* Add .cvsignoreStanislav Malyshev2000-11-290-0/+0
|
* Add more GMP functions, fix a couple of bugsStanislav Malyshev2000-11-294-35/+129
|
* @ Added the is_null() function that will return true if a variable is ofSterling Hughes2000-11-292-0/+10
| | | | | @ type null. (Sterling)
* made gd working correct under win32Daniel Beulshausen2000-11-291-58/+62
| | | | | # fixes the issues when running php threadsafe
* ChangeLog update2000-11-291-0/+26
|
* NEWS update2000-11-291-0/+1
|
* Added the capability to specify a different HTTP Redirection response codeJason Greene2000-11-291-1/+5
| | | | | | | | before the Location Header. Ex. header("HTTP/1.1 307 Temporary Redirect"); header("Location: URL");