]> granicus.if.org Git - php/log
php
21 years agoCOMPILE_DL_MYSQL_MYSQL -> COMPILE_DL_MYSQL
Sebastian Bergmann [Sun, 6 Jul 2003 20:38:56 +0000 (20:38 +0000)]
COMPILE_DL_MYSQL_MYSQL -> COMPILE_DL_MYSQL

21 years agoadd convenience functions or adding class properties. Ok'd for commit by Andi.
George Schlossnagle [Sun, 6 Jul 2003 19:55:20 +0000 (19:55 +0000)]
add convenience functions or adding class properties.  Ok'd for commit by Andi.

21 years agoAdded missing includes
Moriyoshi Koizumi [Sun, 6 Jul 2003 17:52:42 +0000 (17:52 +0000)]
Added missing includes

21 years agoSimplified config scripts
Moriyoshi Koizumi [Sun, 6 Jul 2003 17:51:46 +0000 (17:51 +0000)]
Simplified config scripts

21 years ago- Fix bug #24512
Pierre Joye [Sun, 6 Jul 2003 14:17:58 +0000 (14:17 +0000)]
- Fix bug #24512

21 years agouse common doc with ref counting rather than copy
Rob Richards [Sat, 5 Jul 2003 23:43:10 +0000 (23:43 +0000)]
use common doc with ref counting rather than copy

21 years ago- In function sqlite_field_name the index parameter is not optional.
Marcus Boerger [Sat, 5 Jul 2003 20:02:40 +0000 (20:02 +0000)]
- In function sqlite_field_name the index parameter is not optional.
- Fix all the protos.

21 years agoMFB: binary mode by default under win32.
Wez Furlong [Sat, 5 Jul 2003 08:25:25 +0000 (08:25 +0000)]
MFB: binary mode by default under win32.

21 years ago- Fixed bug #24504: T_INTERFACE and T_IMPLEMENTS not defined in tokenizer
Derick Rethans [Sat, 5 Jul 2003 06:49:57 +0000 (06:49 +0000)]
- Fixed bug #24504: T_INTERFACE and T_IMPLEMENTS not defined in tokenizer
  extension

21 years agonot a temp var unless its a singular var
Sterling Hughes [Sat, 5 Jul 2003 00:33:13 +0000 (00:33 +0000)]
not a temp var unless its a singular var

21 years agoChangeLog update
<changelog@php.net> [Sat, 5 Jul 2003 00:30:12 +0000 (00:30 +0000)]
ChangeLog update

21 years ago"real" fix
Sterling Hughes [Fri, 4 Jul 2003 22:21:23 +0000 (22:21 +0000)]
"real" fix

21 years agofix memory cverrun when accessing an empty xml element.
Sterling Hughes [Fri, 4 Jul 2003 21:58:09 +0000 (21:58 +0000)]
fix memory cverrun when accessing an empty xml element.
guess how many lines it took me to write a basic WSDL parser + API?  20 using
curl + simplexml

21 years agoOn Windows, handle YAZ versions that don't export yaz_version.
Adam Dickmeiss [Fri, 4 Jul 2003 19:17:09 +0000 (19:17 +0000)]
On Windows, handle YAZ versions that don't export yaz_version.

21 years agoavoid external conflicts in apache
Sterling Hughes [Fri, 4 Jul 2003 18:19:02 +0000 (18:19 +0000)]
avoid external conflicts in apache

21 years ago- Add heap to memory manager. This should improve performance.
Andi Gutmans [Fri, 4 Jul 2003 15:38:12 +0000 (15:38 +0000)]
- Add heap to memory manager. This should improve performance.
- Enabling it by default so that it gets tested. We should decide before
beta 2 if we want to revert back to malloc or not.
- Thanks to Sebastian for benchmarking it

21 years agoskip test if glob() is not available at all
Hartmut Holzgraefe [Fri, 4 Jul 2003 15:07:11 +0000 (15:07 +0000)]
skip test if glob() is not available at all

21 years agoregression test for #24482 GLOB_ONLYDIR is not working (on BSD)
Hartmut Holzgraefe [Fri, 4 Jul 2003 14:38:07 +0000 (14:38 +0000)]
regression test for #24482 GLOB_ONLYDIR is not working (on BSD)

21 years agomake sure operator precedence is not playing tricks on us
Hartmut Holzgraefe [Fri, 4 Jul 2003 13:24:47 +0000 (13:24 +0000)]
make sure operator precedence is not playing tricks on us
(it worked before on gcc3.2/Linux and with VC++ 6, but not
 with gcc3.1/MacOSX)

21 years ago2 * TSRMLS_FETCH() -> 1 * TSRMLS_DC
Sebastian Bergmann [Fri, 4 Jul 2003 10:31:41 +0000 (10:31 +0000)]
2 * TSRMLS_FETCH() -> 1 * TSRMLS_DC

21 years agows fix
George Schlossnagle [Fri, 4 Jul 2003 03:26:37 +0000 (03:26 +0000)]
ws fix

21 years agoChangeLog update
<changelog@php.net> [Fri, 4 Jul 2003 00:30:27 +0000 (00:30 +0000)]
ChangeLog update

21 years agoMFB quoting of )
Sascha Schumann [Thu, 3 Jul 2003 22:54:57 +0000 (22:54 +0000)]
MFB quoting of )

21 years agoMore __clone testing
Marcus Boerger [Thu, 3 Jul 2003 19:53:01 +0000 (19:53 +0000)]
More __clone testing

21 years agoChange fetch functions and protos so they make more sense.
Frank M. Kromann [Thu, 3 Jul 2003 16:53:04 +0000 (16:53 +0000)]
Change fetch functions and protos so they make more sense.
fetch_row or fetch_assoc should  not take the optional parameter

21 years agoAllow final private methods
Marcus Boerger [Thu, 3 Jul 2003 16:45:37 +0000 (16:45 +0000)]
Allow final private methods
#
# Declaring a method private and final would only be an error for an abstract
# class. But at the moment the method is defined and it's modifiers are checked
# we do not know whether or not we have an abstract class. It could already be
# abstract but it also become abstract later.
#
# Since i made the mistake in first place i remove the check now.
#
# Providing the correct test would slow down the compiler becuase we'd have to
# iterate through all methods on all abstract classes and check for this. I
# guess we can live without. Or does anybody wants this to be implemented ?

21 years agoAdded missing protos
Moriyoshi Koizumi [Thu, 3 Jul 2003 15:30:14 +0000 (15:30 +0000)]
Added missing protos

21 years agoFix build
Moriyoshi Koizumi [Thu, 3 Jul 2003 15:26:12 +0000 (15:26 +0000)]
Fix build

21 years agoVCWD awareness and (hopefully) windows compile fix
Hartmut Holzgraefe [Thu, 3 Jul 2003 14:54:03 +0000 (14:54 +0000)]
VCWD awareness and (hopefully) windows compile fix

21 years agoPHP glob() will now emulate GLOB_ONLYDIR on non-GNU systems
Hartmut Holzgraefe [Thu, 3 Jul 2003 14:34:02 +0000 (14:34 +0000)]
PHP glob() will now emulate GLOB_ONLYDIR on non-GNU systems

21 years agowin build fixes (Rob Richards)
George Schlossnagle [Thu, 3 Jul 2003 14:11:31 +0000 (14:11 +0000)]
win build fixes  (Rob Richards)

21 years agoAccessing globals from a destructor causes memory corruption
Marcus Boerger [Thu, 3 Jul 2003 14:06:51 +0000 (14:06 +0000)]
Accessing globals from a destructor causes memory corruption

21 years agocan't forget Andrei
George Schlossnagle [Thu, 3 Jul 2003 14:00:17 +0000 (14:00 +0000)]
can't forget Andrei

21 years agoenable Classname() constructor to be called via parent::__constructor()
Stanislav Malyshev [Thu, 3 Jul 2003 12:03:11 +0000 (12:03 +0000)]
enable Classname() constructor to be called via parent::__constructor()

21 years agoFix open mode (noticed by FutureQuest, Inc.)
Marcus Boerger [Thu, 3 Jul 2003 11:17:34 +0000 (11:17 +0000)]
Fix open mode (noticed by FutureQuest, Inc.)

21 years agoCheck private redeclare behavior
Marcus Boerger [Thu, 3 Jul 2003 10:05:01 +0000 (10:05 +0000)]
Check private redeclare behavior

21 years agoadd test for Bug #19859
Stanislav Malyshev [Thu, 3 Jul 2003 09:22:35 +0000 (09:22 +0000)]
add test for Bug #19859

21 years agoFix bug #19859 - allow fast_call_user_function to support __call
Stanislav Malyshev [Thu, 3 Jul 2003 09:18:41 +0000 (09:18 +0000)]
Fix bug #19859 - allow fast_call_user_function to support __call

21 years agofix the get_parent_class fix
Stanislav Malyshev [Thu, 3 Jul 2003 08:00:10 +0000 (08:00 +0000)]
fix the get_parent_class fix

21 years agofix these tests
Sterling Hughes [Thu, 3 Jul 2003 07:18:41 +0000 (07:18 +0000)]
fix these tests

21 years agoStore verbose=1 in config file
Tomas V.V.Cox [Thu, 3 Jul 2003 07:08:21 +0000 (07:08 +0000)]
Store verbose=1 in config file

21 years agoAtm php5 doesn't support this:
Tomas V.V.Cox [Thu, 3 Jul 2003 06:54:26 +0000 (06:54 +0000)]
Atm php5 doesn't support this:
function foo(&$a) {
return new Bar;
}

21 years agoWrite the PEAR system config file while installing
Tomas V.V.Cox [Thu, 3 Jul 2003 06:45:49 +0000 (06:45 +0000)]
Write the PEAR system config file while installing

21 years agoAdded tha ability to store custom data in a layer
Tomas V.V.Cox [Thu, 3 Jul 2003 06:43:31 +0000 (06:43 +0000)]
Added tha ability to store custom data in a layer
Added method getConfFile()
Better layer removing in removeLayer()

21 years agomore of Timm's patches, and mod authors line to give credit where credit is due.
George Schlossnagle [Thu, 3 Jul 2003 05:33:23 +0000 (05:33 +0000)]
more of Timm's patches, and mod authors line to give credit where credit is due.

21 years agotypo, need the complete file name not the basenamed one
Tomas V.V.Cox [Thu, 3 Jul 2003 05:09:36 +0000 (05:09 +0000)]
typo, need the complete file name not the basenamed one

21 years agoUpdate documentation for PHP 5.
Jon Parise [Thu, 3 Jul 2003 04:14:42 +0000 (04:14 +0000)]
Update documentation for PHP 5.

21 years agoCut the long line a bit for readability..
foobar [Thu, 3 Jul 2003 02:59:04 +0000 (02:59 +0000)]
Cut the long line a bit for readability..

21 years agoCompiler warning fix.
Ilia Alshanetsky [Thu, 3 Jul 2003 00:55:20 +0000 (00:55 +0000)]
Compiler warning fix.

21 years agoChangeLog update
<changelog@php.net> [Thu, 3 Jul 2003 00:30:19 +0000 (00:30 +0000)]
ChangeLog update

21 years agoTemporairy solution to overcome shutdown propbelms with objects that have
Marcus Boerger [Wed, 2 Jul 2003 23:58:47 +0000 (23:58 +0000)]
Temporairy solution to overcome shutdown propbelms with objects that have
hidden destructors.
#
# If we set the error level to E_ERROR what we must to to be correct and an
# object needs to be automatically destructed in shutdown process then the
# exit would cause memory corruption and a SEGV.

21 years agoReorganize this a bit to ensure the object memory is destructed before
Marcus Boerger [Wed, 2 Jul 2003 23:53:53 +0000 (23:53 +0000)]
Reorganize this a bit to ensure the object memory is destructed before
showing the error.

21 years agorename functions to php5_*
Uwe Schindler [Wed, 2 Jul 2003 22:39:37 +0000 (22:39 +0000)]
rename functions to php5_*

21 years agoIntroduce connection pooling API. I'll use these in http/ftp fopen wrappers soon.
Sara Golemon [Wed, 2 Jul 2003 22:18:59 +0000 (22:18 +0000)]
Introduce connection pooling API. I'll use these in http/ftp fopen wrappers soon.

21 years agoBug #24399: is_subclass_of(): fix memleak, too
Marcus Boerger [Wed, 2 Jul 2003 21:57:57 +0000 (21:57 +0000)]
Bug #24399: is_subclass_of(): fix memleak, too

21 years agofunny fixes
Marcus Boerger [Wed, 2 Jul 2003 21:40:54 +0000 (21:40 +0000)]
funny fixes

21 years agoZTS fix
Marcus Boerger [Wed, 2 Jul 2003 21:37:46 +0000 (21:37 +0000)]
ZTS fix

21 years agomore size_t -> socklen_t.
Wez Furlong [Wed, 2 Jul 2003 21:11:35 +0000 (21:11 +0000)]
more size_t -> socklen_t.
Noticed by tychay@php.net

21 years agoNot really the best way to solve this. But it doesn't give a segfault on
Sterling Hughes [Wed, 2 Jul 2003 20:05:13 +0000 (20:05 +0000)]
Not really the best way to solve this.  But it doesn't give a segfault on
self-referential structures, which is always a bonus

21 years agoAnother test case
Zeev Suraski [Wed, 2 Jul 2003 18:05:45 +0000 (18:05 +0000)]
Another test case

21 years ago- use <?php in testcases
Derick Rethans [Wed, 2 Jul 2003 18:00:51 +0000 (18:00 +0000)]
- use <?php in testcases

21 years agoAdd test case
Zeev Suraski [Wed, 2 Jul 2003 17:51:15 +0000 (17:51 +0000)]
Add test case

21 years agoThroughly fix scoping change. Fixes, among other things, bug #24403
Zeev Suraski [Wed, 2 Jul 2003 17:48:18 +0000 (17:48 +0000)]
Throughly fix scoping change.  Fixes, among other things, bug #24403

21 years agoChanged line break characters from CRLF to LF.
Moriyoshi Koizumi [Wed, 2 Jul 2003 17:13:27 +0000 (17:13 +0000)]
Changed line break characters from CRLF to LF.

21 years agos/cvs/csv/
Moriyoshi Koizumi [Wed, 2 Jul 2003 17:07:56 +0000 (17:07 +0000)]
s/cvs/csv/

21 years ago- Nuke CG(in_clone_method)
Andi Gutmans [Wed, 2 Jul 2003 16:52:07 +0000 (16:52 +0000)]
- Nuke CG(in_clone_method)

21 years agoFixed a leak that occurs with "R" reference variable specifier.
Moriyoshi Koizumi [Wed, 2 Jul 2003 16:19:57 +0000 (16:19 +0000)]
Fixed a leak that occurs with "R" reference variable specifier.

21 years agoNow this should make sense.
Moriyoshi Koizumi [Wed, 2 Jul 2003 15:47:24 +0000 (15:47 +0000)]
Now this should make sense.

21 years agos/cvs/csv/ :)
Moriyoshi Koizumi [Wed, 2 Jul 2003 15:43:44 +0000 (15:43 +0000)]
s/cvs/csv/ :)

21 years agoAdjust test.
Moriyoshi Koizumi [Wed, 2 Jul 2003 15:38:51 +0000 (15:38 +0000)]
Adjust test.
# This was also fixed by the Zeev's patch for bug #22367.

21 years agoAdjust expectations :)
Zeev Suraski [Wed, 2 Jul 2003 15:08:11 +0000 (15:08 +0000)]
Adjust expectations :)

21 years agoFix for bug #22367.
Zeev Suraski [Wed, 2 Jul 2003 15:06:10 +0000 (15:06 +0000)]
Fix for bug #22367.
Heads up - this will break syntactical compatiblity, return($foo) will
not work with functions that return references - return $foo should be used
instead.  It never worked well before, and caused all sorts of odd bugs.
It *might* be possible to support this specifically, albeit unlikely

21 years agooptimize the case where the object is really a class name, as we don't need
Sterling Hughes [Wed, 2 Jul 2003 14:44:41 +0000 (14:44 +0000)]
optimize the case where the object is really a class name, as we don't need
to set EX(object) here.

21 years agoTimm Friebe points out that object detection should be done regardless of
Sterling Hughes [Wed, 2 Jul 2003 14:33:41 +0000 (14:33 +0000)]
Timm Friebe points out that object detection should be done regardless of
the function pointer

21 years agoprevent user from making nested PHP requests using virtual()
Uwe Schindler [Wed, 2 Jul 2003 13:39:41 +0000 (13:39 +0000)]
prevent user from making nested PHP requests using virtual()

21 years ago- tabs
Pierre Joye [Wed, 2 Jul 2003 11:36:17 +0000 (11:36 +0000)]
- tabs

21 years ago- Fix #23808
Pierre Joye [Wed, 2 Jul 2003 11:23:56 +0000 (11:23 +0000)]
- Fix #23808

21 years ago- MFH
Pierre Joye [Wed, 2 Jul 2003 10:08:17 +0000 (10:08 +0000)]
- MFH

21 years agoFinally fix property cloning and fix the tests accordingly.
Marcus Boerger [Wed, 2 Jul 2003 07:24:11 +0000 (07:24 +0000)]
Finally fix property cloning and fix the tests accordingly.

# The default behaviour is to copy all properties with all current values
# from the old object. But if __clone is overwritten then only the default
# properties are cloned with their correct default values. So we keep
# the type system intact and also allow real __clone overwriting now.

21 years agoFix test name
Marcus Boerger [Wed, 2 Jul 2003 06:40:34 +0000 (06:40 +0000)]
Fix test name

21 years agofix this test when using a save_handler other than files...
Sterling Hughes [Wed, 2 Jul 2003 04:34:18 +0000 (04:34 +0000)]
fix this test when using a save_handler other than files...

21 years agoFix bug #24445
Sterling Hughes [Wed, 2 Jul 2003 04:31:33 +0000 (04:31 +0000)]
Fix bug #24445

21 years agoadd a test for get_parent_class() bug
Sterling Hughes [Wed, 2 Jul 2003 04:30:45 +0000 (04:30 +0000)]
add a test for get_parent_class() bug

21 years agofurther improve the performance and clean up
Sterling Hughes [Wed, 2 Jul 2003 03:12:06 +0000 (03:12 +0000)]
further improve the performance and clean up

21 years agoMFB PHP_CHECK_LIBRARY fix
Sascha Schumann [Wed, 2 Jul 2003 03:04:35 +0000 (03:04 +0000)]
MFB PHP_CHECK_LIBRARY fix

21 years ago*** empty log message ***
foobar [Wed, 2 Jul 2003 02:38:47 +0000 (02:38 +0000)]
*** empty log message ***

21 years agoFixed a crash when text is added before a font is specified.
Ilia Alshanetsky [Wed, 2 Jul 2003 02:04:00 +0000 (02:04 +0000)]
Fixed a crash when text is added before a font is specified.

21 years agosocklen_t needs this.
Wez Furlong [Wed, 2 Jul 2003 01:35:39 +0000 (01:35 +0000)]
socklen_t needs this.
We might need some more magic to ensure that socklen_t gets defined in
the correct places; lets see if any more problems arise...

21 years agoFix install-sapi dependency - it should depend on OVERALL_TARGET, of course.
Sascha Schumann [Wed, 2 Jul 2003 01:08:26 +0000 (01:08 +0000)]
Fix install-sapi dependency - it should depend on OVERALL_TARGET, of course.

21 years agonot necessary, already assumed binary safe (it has to be under the current
Sterling Hughes [Wed, 2 Jul 2003 00:56:32 +0000 (00:56 +0000)]
not necessary, already assumed binary safe (it has to be under the current
session architecture), and anything else is fair play

21 years agoThis file has moved for your years ago into TSRM. Delete it.
Sascha Schumann [Wed, 2 Jul 2003 00:52:35 +0000 (00:52 +0000)]
This file has moved for your years ago into TSRM.  Delete it.

21 years agows fix
Sterling Hughes [Wed, 2 Jul 2003 00:45:15 +0000 (00:45 +0000)]
ws fix

21 years agoset synching to off
Sterling Hughes [Wed, 2 Jul 2003 00:43:00 +0000 (00:43 +0000)]
set synching to off
cleanup some silly code

21 years agoChangeLog update
<changelog@php.net> [Wed, 2 Jul 2003 00:30:25 +0000 (00:30 +0000)]
ChangeLog update

21 years agono c++ style comments
Sterling Hughes [Wed, 2 Jul 2003 00:04:58 +0000 (00:04 +0000)]
no c++ style comments

21 years agoSync PHP_CHECK_LIBRARY change
Sascha Schumann [Wed, 2 Jul 2003 00:04:12 +0000 (00:04 +0000)]
Sync PHP_CHECK_LIBRARY change

21 years agomake this actually work.
Sterling Hughes [Wed, 2 Jul 2003 00:03:41 +0000 (00:03 +0000)]
make this actually work.

21 years agoAdd more clone testing
Marcus Boerger [Tue, 1 Jul 2003 23:57:27 +0000 (23:57 +0000)]
Add more clone testing

21 years agoCheck handling of private class members
Marcus Boerger [Tue, 1 Jul 2003 23:50:01 +0000 (23:50 +0000)]
Check handling of private class members

21 years agoFix __clone().
Marcus Boerger [Tue, 1 Jul 2003 23:29:36 +0000 (23:29 +0000)]
Fix __clone().

# This is somewhat discussable. I copied all properties from the old to the
# new object. But for type correctness we only need to copy the properties
# declared in the class and its parents.
#
# Also someone might want to take care about static and const members.