summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Part 1 of fixing the shared buildfoobar2002-10-171-2/+6
|
* --with-zlib-dir was missing. Needed for phpize buildsfoobar2002-10-171-0/+4
|
* Added word_count() function that allows counting of words inside a string.Ilia Alshanetsky2002-10-173-0/+76
| | | | | The function also allows the user to retrieve all the words from a string.
* ws fixesfoobar2002-10-171-20/+20
|
* NEWS update2002-10-171-0/+2
|
* ChangeLog update2002-10-172-0/+89
|
* @ changed the VARIANT class to be able to create arrays of all typesHarald Radi2002-10-163-12/+18
| | | | | @ and not only VT_VARIANT
* Fix for bug #19941Rasmus Lerdorf2002-10-161-1/+1
|
* Fixed a bug with .phps handler.Ilia Alshanetsky2002-10-161-1/+1
|
* Fix ZTS build.Sebastian Bergmann2002-10-161-5/+5
|
* Fix class static members: now the following code works:Stanislav Malyshev2002-10-162-11/+31
| | | | | | | | | | | | | | | | | | | <?php class Foo { static $c = "Parent"; } class Child extends Foo { } Foo::$c = "Hello"; var_dump(Child::$c); ?> and returns "Hello" (class statics are not copied anymore, but looked up in runtime)
* Fix and generalize $this handling.Stanislav Malyshev2002-10-163-47/+72
| | | | | | ZEND_FETCH_FROM_THIS is removed, IS_UNUSED type on class variables will be used instead as the sign that it's a fetch from $this
* Fixed bug #19921. (memory leak introduced by me in rev 1.492)Ilia Alshanetsky2002-10-161-4/+9
|
* - Fix typo..foobar2002-10-161-1/+1
| | | | | | | # # Note: This is not used at all yet..waiting for comments first. :) #
* Revert. Again.Sebastian Bergmann2002-10-161-15/+12
|
* modified zend_bool handling code.Rui Hirokawa2002-10-161-2/+4
|
* *** empty log message ***Rui Hirokawa2002-10-161-1/+1
|
* fixed a problem when mbstring.encoding_translation is defined per directory ↵Rui Hirokawa2002-10-161-0/+8
| | | | basis.
* fixed a problem when mbstring.encoding_translation is defined per directory ↵Rui Hirokawa2002-10-161-2/+32
| | | | basis.
* Newly available extensions on windows.Edin Kadribasic2002-10-161-1/+1
|
* ChangeLog update2002-10-161-0/+154
|
* Patch by Urs Gehrig <urs@circle.ch>.Sebastian Bergmann2002-10-161-12/+14
|
* - Fixed memleak when connection fails.foobar2002-10-161-16/+20
| | | | | | - Fixed snmpget() to work with net-snmp - Fixed the error messages to use the new style.
* Some more compatibility fixes for net-snmp vs ucd-snmpfoobar2002-10-161-2/+12
|
* - Fix the last commit..(thanks to Harrie Hazewinkel <harrie@lisanza.net>)foobar2002-10-161-3/+3
|
* Added win32 project file.Edin Kadribasic2002-10-161-0/+108
|
* - Added PHP_PROG_SED which checks whether the sed in system works withfoobar2002-10-151-0/+84
| | | | | | | | | | | | | | very long strings. # # Sascha, is this okay? I added this here since any libtool/autoconf # release out there doesn't have this yet..we can remove this when # we can really start requiring such versions which have it? # # This sets $SED to the correct binary, so that should be used in # places were the lines might be very long. #
* - Define LINK_SIZE=2 needed for newly updated pcrelib; fixes Win32 build.Markus Fischer2002-10-151-4/+4
| | | | | | # Getting linker warning about using local defined _php_pcre_exec now at the # end, anything serious ?
* Fixed a bug in the calculation of the POST request length.Ilia Alshanetsky2002-10-151-3/+2
|
* Nope, that last one wasn't a leak in main/streams.c, it wasWez Furlong2002-10-152-2/+2
| | | | | file_get_contents misinterpreting the result...
* Fix a problem relating to these structure symbols being redefined on LFSSterling Hughes2002-10-152-30/+30
| | | | | | | systems. Fix by Sascha Schumann <sascha@apache.org>
* Fix mem leak for zero-byte files.Wez Furlong2002-10-151-1/+1
|
* Some buffer paranoia.Wez Furlong2002-10-151-19/+25
| | | | | Also, make feof() detection safer (ala recent changes to zlib extension).
* Fix for 19906.Wez Furlong2002-10-151-4/+5
| | | | | | | | gzeof has different semantics from feof, in that gzeof will return true if the read position is at EOF, even if the most recent read was 100% successful. feof will return true only (usually) if the most recent fread failed.
* hopefully silence compile warnings on Solaris related to HUGEVAL beingSterling Hughes2002-10-151-2/+3
| | | | | | | | undefined.. HUGEVAL is defined (well the manual would indicate so) in stdlib.h, not math.h. Bug #: 19807
* Upgrade to version 3.92.Andrei Zmievski2002-10-1539-7064/+10999
|
* Fixed the output_handler ini setting.Ilia Alshanetsky2002-10-151-10/+6
| | | | | Code cleanup.
* Bug fixing news.Ilia Alshanetsky2002-10-151-0/+1
|
* Added tests for %e & %EIlia Alshanetsky2002-10-151-0/+10
|
* Fixed bug #4232. (Added support for %e and %E to printf/sprintf)Ilia Alshanetsky2002-10-151-0/+25
|
* - Staying consistent with other testsDerick Rethans2002-10-151-2/+2
|
* Don't use streams-level buffer on zlib streams.Wez Furlong2002-10-151-1/+3
|
* Fixed possible memory leaks.Ilia Alshanetsky2002-10-151-0/+8
|
* Fix leak, and avoid initialization problems where retval is re-usedWez Furlong2002-10-151-4/+13
| | | | | within a function.
* Try keep those moved/removed exts entry at top.foobar2002-10-151-7/+6
|
* Bug fixing news entries.Ilia Alshanetsky2002-10-151-0/+2
|
* Make this thing to compile with net-snmp-5.0.xfoobar2002-10-152-8/+55
|
* NEWS update2002-10-151-0/+3
|
* remove ob_end_clean() and instead use ini sectionMarcus Boerger2002-10-151-1/+2
| | | | | | #Derick you're right this was no good idea. I just left it over after testing #the test.
* ChangeLog update2002-10-152-0/+117
|