[PHP-CVS-DAILY] cvs: php4 / ChangeLog

2003-06-17 Thread changelog
changelog Tue Jun 17 20:31:02 2003 EDT Modified files: /php4 ChangeLog Log: ChangeLog update Index: php4/ChangeLog diff -u php4/ChangeLog:1.1349 php4/ChangeLog:1.1350 --- php4/ChangeLog:1.1349 Mon Jun 16 20:31:36 2003 +++ php4/ChangeLog

[PHP-CVS-DAILY] cvs: Zend / ChangeLog

2003-06-17 Thread changelog
changelog Tue Jun 17 20:31:05 2003 EDT Modified files: /Zend ChangeLog Log: ChangeLog update Index: Zend/ChangeLog diff -u Zend/ChangeLog:1.135 Zend/ChangeLog:1.136 --- Zend/ChangeLog:1.135Mon Jun 16 20:31:38 2003 +++ Zend/ChangeLog Tue

[PHP-CVS] cvs: php4 /ext/standard/tests/array bug24220.phpt

2003-06-17 Thread Ilia Alshanetsky
iliaa Tue Jun 17 09:19:20 2003 EDT Added files: /php4/ext/standard/tests/array bug24220.phpt Log: Added a test case for bug #24220 Index: php4/ext/standard/tests/array/bug24220.phpt +++ php4/ext/standard/tests/array/bug24220.phpt --TEST--n Bug

[PHP-CVS] cvs: php4(PHP_4_3) /ext/standard array.c /ext/standard/tests/array bug24220.phpt

2003-06-17 Thread Ilia Alshanetsky
iliaa Tue Jun 17 09:20:18 2003 EDT Added files: (Branch: PHP_4_3) /php4/ext/standard/tests/array bug24220.phpt Modified files: /php4/ext/standard array.c Log: Fixed bug #24220 (range() didn't handle numeric strings correctly)

[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-17 Thread Ilia Alshanetsky
iliaa Tue Jun 17 09:20:54 2003 EDT Modified files: (Branch: PHP_4_3) /php4 NEWS Log: BFN Index: php4/NEWS diff -u php4/NEWS:1.1247.2.257 php4/NEWS:1.1247.2.258 --- php4/NEWS:1.1247.2.257 Mon Jun 16 17:38:07 2003 +++ php4/NEWS Tue Jun 17

[PHP-CVS] cvs: php4 /ext/gd/libgd gdft.c

2003-06-17 Thread Ilia Alshanetsky
iliaa Tue Jun 17 09:37:43 2003 EDT Modified files: /php4/ext/gd/libgd gdft.c Log: Fixed bug #24223 (missing variable initialization in bundled gd) Index: php4/ext/gd/libgd/gdft.c diff -u php4/ext/gd/libgd/gdft.c:1.23 php4/ext/gd/libgd/gdft.c:1.24 ---

[PHP-CVS] cvs: php4(PHP_4_3) /ext/gd/libgd gdft.c

2003-06-17 Thread Ilia Alshanetsky
iliaa Tue Jun 17 09:37:57 2003 EDT Modified files: (Branch: PHP_4_3) /php4/ext/gd/libgd gdft.c Log: MFH: Fixed bug #24223 (missing variable initialization in bundled gd) Index: php4/ext/gd/libgd/gdft.c diff -u php4/ext/gd/libgd/gdft.c:1.11.2.9

[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-17 Thread Ilia Alshanetsky
iliaa Tue Jun 17 09:38:38 2003 EDT Modified files: (Branch: PHP_4_3) /php4 NEWS Log: MFH Index: php4/NEWS diff -u php4/NEWS:1.1247.2.258 php4/NEWS:1.1247.2.259 --- php4/NEWS:1.1247.2.258 Tue Jun 17 09:20:54 2003 +++ php4/NEWS Tue Jun 17

[PHP-CVS] cvs: php4 /ext/imap php_imap.c

2003-06-17 Thread Ilia Alshanetsky
iliaa Tue Jun 17 09:59:44 2003 EDT Modified files: /php4/ext/imap php_imap.c Log: Fixed a typo in the check Index: php4/ext/imap/php_imap.c diff -u php4/ext/imap/php_imap.c:1.171 php4/ext/imap/php_imap.c:1.172 --- php4/ext/imap/php_imap.c:1.171

[PHP-CVS] cvs: php4(PHP_4_3) /ext/imap php_imap.c

2003-06-17 Thread Ilia Alshanetsky
iliaa Tue Jun 17 10:13:25 2003 EDT Modified files: (Branch: PHP_4_3) /php4/ext/imap php_imap.c Log: MFH Index: php4/ext/imap/php_imap.c diff -u php4/ext/imap/php_imap.c:1.142.2.17 php4/ext/imap/php_imap.c:1.142.2.18 ---

Re: [PHP-CVS] cvs: php4 /ext/standard array.c /ext/standard/tests/array bug24198.phpt

2003-06-17 Thread Ilia A.
To allow us to do this: $a = array('a' = 1, 'b' = 2); $b = $a; $c = $a; array_merge_recursive($b, $c); The old check has a problem, because $b $c are write only copies *src_entry == *dest_entry condition is met and the function incorrectly terminates claiming a circular reference. We cannot

Re: [PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2003-06-17 Thread Jani Taskinen
MFH? (what exactly did this fix/change? :) --Jani On Mon, 16 Jun 2003, Stanislav Malyshev wrote: stas Mon Jun 16 12:14:38 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: flush after banner print Index: php4/sapi/cli/php_cli.c

Re: [PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2003-06-17 Thread Stanislav Malyshev
Well, it mostly fixed the tests :) The problem is that if one doesn't flush, then on console everything is OK, but if you use some buffered stream (e.g., popen, or even maybe file) then the banner can get inside the rest of the output and not at the start. Using interactive mode outside

Re: [PHP-CVS] cvs: php4 /ext/standard array.c /ext/standard/tests/array bug24198.phpt

2003-06-17 Thread Jon Parise
On Tue, Jun 17, 2003 at 10:24:46AM -0400, Ilia A. wrote: The old check has a problem, because $b $c are write only copies *src_entry == *dest_entry condition is met and the function incorrectly terminates claiming a circular reference. We cannot use is_ref field to verify references since

Re: [PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2003-06-17 Thread Jani Taskinen
Sounds like something nobody else than you needs? :) No need to merge, no bug reports (AFAIK) about this either. --Jani On Tue, 17 Jun 2003, Stanislav Malyshev wrote: Well, it mostly fixed the tests :) The problem is that if one doesn't flush, then on console everything

[PHP-CVS] cvs: php4(PHP_4_3) / NEWS

2003-06-17 Thread Jani Taskinen
sniper Tue Jun 17 11:53:34 2003 EDT Modified files: (Branch: PHP_4_3) /php4 NEWS Log: BFN Index: php4/NEWS diff -u php4/NEWS:1.1247.2.259 php4/NEWS:1.1247.2.260 --- php4/NEWS:1.1247.2.259 Tue Jun 17 09:38:38 2003 +++ php4/NEWS Tue Jun 17 11:53:33

[PHP-CVS] cvs: php4(PHP_4_3) /main main.c

2003-06-17 Thread Ilia Alshanetsky
iliaa Tue Jun 17 13:15:16 2003 EDT Modified files: (Branch: PHP_4_3) /php4/main main.c Log: MFH: Handle numeric keys passed via GPC Index: php4/main/main.c diff -u php4/main/main.c:1.512.2.40 php4/main/main.c:1.512.2.41 --- php4/main/main.c:1.512.2.40 Sat

Re: [PHP-CVS] cvs: php4 /ext/standard array.c /ext/standard/tests/array bug24198.phpt

2003-06-17 Thread Andrei Zmievski
On Tue, 17 Jun 2003, Ilia A. wrote: references since that field is always 0 no matter what. So, we rely on an interesting property of refcount, which causes refcount to be odd when we have a reference and even we simply have a write only copy. Can you explain the rationality behind this

[PHP-CVS] cvs: php4 /ext/standard streamsfuncs.c

2003-06-17 Thread Sara Golemon
pollita Tue Jun 17 14:38:56 2003 EDT Modified files: /php4/ext/standard streamsfuncs.c Log: No need to allocate a hashtable when return_value is just going to be overwriten Index: php4/ext/standard/streamsfuncs.c diff -u php4/ext/standard/streamsfuncs.c:1.17

[PHP-CVS] cvs: spl / php_spl.c php_spl.h spl_engine.c spl_engine.h spl_foreach.c spl_functions.c spl_functions.h /tests forward.phpt sequence.phpt

2003-06-17 Thread Marcus Boerger
helly Tue Jun 17 16:18:10 2003 EDT Modified files: /splphp_spl.c php_spl.h spl_engine.c spl_engine.h spl_foreach.c spl_functions.c spl_functions.h /spl/tests forward.phpt sequence.phpt Log: - Remove namespace leftovers - Convert

[PHP-CVS] cvs: php4(PHP_4_3) /ext/standard/tests/general_functions getopt.phpt /tests/basic 012.phpt

2003-06-17 Thread Rasmus Lerdorf
rasmus Tue Jun 17 18:32:51 2003 EDT Modified files: (Branch: PHP_4_3) /php4/ext/standard/tests/general_functions getopt.phpt /php4/tests/basic 012.phpt Log: variables_order needs to include S for both of these to work Index:

[PHP-CVS] cvs: php4 /ext/ircg ircg.c

2003-06-17 Thread Sascha Schumann
sas Tue Jun 17 19:35:19 2003 EDT Modified files: /php4/ext/ircg ircg.c Log: Call free in the right domain Index: php4/ext/ircg/ircg.c diff -u php4/ext/ircg/ircg.c:1.188 php4/ext/ircg/ircg.c:1.189 --- php4/ext/ircg/ircg.c:1.188 Tue Jun 10 16:03:30

[PHP-CVS] cvs: php4 /ext/ircg ircg_scanner.re php_ircg_conversion.c

2003-06-17 Thread Sascha Schumann
sas Tue Jun 17 20:07:45 2003 EDT Modified files: /php4/ext/ircg ircg_scanner.re php_ircg_conversion.c Log: Work-around apparent issue with appendc Fix file inclusion order (Solaris) Index: php4/ext/ircg/ircg_scanner.re diff -u

[PHP-CVS] cvs: php4 /ext/ircg ircg_scanner.c

2003-06-17 Thread Sascha Schumann
sas Tue Jun 17 20:08:05 2003 EDT Modified files: /php4/ext/ircg ircg_scanner.c Log: Sync Index: php4/ext/ircg/ircg_scanner.c diff -u php4/ext/ircg/ircg_scanner.c:1.29 php4/ext/ircg/ircg_scanner.c:1.30 --- php4/ext/ircg/ircg_scanner.c:1.29 Tue Jun

[PHP-CVS] cvs: php4 /ext/standard ftp_fopen_wrapper.c

2003-06-17 Thread Sara Golemon
pollita Tue Jun 17 23:26:29 2003 EDT Modified files: /php4/ext/standard ftp_fopen_wrapper.c Log: Fix compiler warnings Index: php4/ext/standard/ftp_fopen_wrapper.c diff -u php4/ext/standard/ftp_fopen_wrapper.c:1.57 php4/ext/standard/ftp_fopen_wrapper.c:1.58

[PHP-CVS] cvs: php4 /main main.c

2003-06-17 Thread Ilia Alshanetsky
iliaa Tue Jun 17 13:15:02 2003 EDT Modified files: /php4/main main.c Log: Handle numeric keys passed via GPC Index: php4/main/main.c diff -u php4/main/main.c:1.559 php4/main/main.c:1.560 --- php4/main/main.c:1.559 Sat Jun 14 11:08:26 2003 +++