Re: [PHP-DEV] About dropping magic_quotes in 5.3

2008-12-09 Thread Lester Caine
Steph Fox wrote: If not now, when? Later? Would you mind reading the thread first please? :) The subject's a tad misleading at this stage. I seem to recall the discussion on this was completed a couple of years ago, but since PHP6 is still being pushed back people are forgetting what

Re: [PHP-DEV] Problem with (namespaced) code extending ReflectionProperty- possible bug?

2008-12-09 Thread Karsten Dambekalns
Hi. Stanislav Malyshev wrote: According to the manual and the PHP source the signature is this: public function getValue(stdclass $object) ... Use public function getValue($object = null) {} instead. Thanks, that works! I saw the [] in the C source, but failed to draw the right

Re: [PHP-DEV] PHP 5.2.8 Released

2008-12-09 Thread Hannes Magnusson
On Tue, Dec 9, 2008 at 00:59, Ilia Alshanetsky [EMAIL PROTECTED] wrote: The PHP development team would like to announce the immediate availability of PHP 5.2.8. This release addresses a regression introduced by 5.2.7 in What is the status of the 5.2.x series now? Security fixes only? Random

Re: [PHP-DEV] PHP 5.2.8 Released

2008-12-09 Thread Hannes Magnusson
On Tue, Dec 9, 2008 at 13:29, Marcus Boerger [EMAIL PROTECTED] wrote: Hello Hannes, Tuesday, December 9, 2008, 10:58:17 AM, you wrote: On Tue, Dec 9, 2008 at 00:59, Ilia Alshanetsky [EMAIL PROTECTED] wrote: The PHP development team would like to announce the immediate availability of PHP

Re: [PHP-DEV] PHP 5.2.8 Released

2008-12-09 Thread Ilia Alshanetsky
I would prefer that 5.2 at this point was reserved for critical fixes only. In mind those would include crash fixes, regression fixes and of course any security fixes. On 9-Dec-08, at 4:58 AM, Hannes Magnusson wrote: On Tue, Dec 9, 2008 at 00:59, Ilia Alshanetsky [EMAIL PROTECTED] wrote:

Re: [PHP-DEV] PHP 5.2.8 Released

2008-12-09 Thread Marcus Boerger
Hello Hannes, Tuesday, December 9, 2008, 10:58:17 AM, you wrote: On Tue, Dec 9, 2008 at 00:59, Ilia Alshanetsky [EMAIL PROTECTED] wrote: The PHP development team would like to announce the immediate availability of PHP 5.2.8. This release addresses a regression introduced by 5.2.7 in What

Re: [PHP-DEV] About dropping magic_quotes in 5.3 (was: Re: [PHP-DEV] Re: PHP 5.2.7 + magic_quotes_gpc broken)

2008-12-09 Thread Marcus Boerger
Hello Ilia, we would stick to the rule of only adding to internal APIs in a minor branch series. Using the pre x.y.0 for time to add, change and delete functions. I'll write more in a separate thread. marcus Monday, December 8, 2008, 10:19:32 PM, you wrote: How would that model relate to

[PHP-DEV] Stuff that still needs to be merged from HEAD?

2008-12-09 Thread Hannes Magnusson
Hello all There are still several items that should be merged from HEAD to 5.3. - Changed allow_url_fopen/allow_url_include to allow per-wrapper enable/disable and runtime tightening. (Sara) (no idea what this actually is though) - Added context and binary_pipes params in other_options for

Re: [PHP-DEV] About dropping magic_quotes in 5.3 [OFF-LIST]

2008-12-09 Thread Lester Caine
Steph Fox wrote: I seem to recall the discussion on this was completed a couple of years ago, but since PHP6 is still being pushed back people are forgetting what was agreed and are now trying to extend the life of PHP5 ;) Mark things that are will become dead in 6.0 E_DEPRECATED in 5.3 If

[PHP-DEV] Re: PHP 5.2.8 Released

2008-12-09 Thread Michael Sisolak
The 5.2.8 zip files for Windows (thread and non-thread safe) don't include msql.dll or ntwdblib.dll. They were in 5.2.6 and 5.2.7. Is this a mistake? Michael Sisolak [EMAIL PROTECTED] -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit:

RE: [PHP-DEV] Upgrading to internal DateTime

2008-12-09 Thread Jonathan Bond-Caron
On Sat Dec 6 12:09 AM, Lester Caine wrote: Derick Rethans wrote: ( Slipping a date through DateTime and returning it DATE_W3C seems to be adding the correct daylight saving details so far and allowing ADOdb date to work ) This is not the correct thing to do, as you will lose timezone

[PHP-DEV] Re: cvs: php-src(PHP_5_3) /ext/phar/tests ini_set.phpt

2008-12-09 Thread Gregory Beaver
Hannes Magnusson wrote: bjori Tue Dec 9 13:02:40 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/phar/tests ini_set.phpt Log: MFH: fix test http://cvs.php.net/viewvc.cgi/php-src/ext/phar/tests/ini_set.phpt?r1=1.4.2.1r2=1.4.2.2diff_format=u

[PHP-DEV] problem with include_path and write-based file functions

2008-12-09 Thread Gregory Beaver
Hi, This bug: http://bugs.php.net/bug.php?id=46680 uncovers 2 larger issues. 1) Where should a function like file_put_contents() create its file if it doesn't already exist and FILE_USE_INCLUDE_PATH is specified? The test for this is ext/standard/file/file_put_contents_variation4.phpt and a

Re: [PHP-DEV] problem with include_path and write-based file functions

2008-12-09 Thread Marcus Boerger
Hello Gregory, Tuesday, December 9, 2008, 8:50:21 PM, you wrote: Hi, This bug: http://bugs.php.net/bug.php?id=46680 uncovers 2 larger issues. 1) Where should a function like file_put_contents() create its file if it doesn't already exist and FILE_USE_INCLUDE_PATH is specified? The

[PHP-DEV] PCRE symbol visibility bug

2008-12-09 Thread shire
When using GCC 4.x with php-5.3, and an extension (such as APC) that references PCRE functions (pcre_exec) that are bundled with PHP in the pcre extension. The symbols defined in the PHP binaries don't include a visibility default attribute, and are currently set to hidden in CFLAGS.