]>
granicus.if.org Git - php/log
Marcus Boerger [Sat, 2 Feb 2008 15:19:06 +0000 (15:19 +0000)]
- Fix tests
Marcus Boerger [Sat, 2 Feb 2008 15:18:30 +0000 (15:18 +0000)]
- Fix remaining issue (should be last one)
Marcus Boerger [Sat, 2 Feb 2008 14:37:29 +0000 (14:37 +0000)]
- Fix the expectations. Tests still fails because of something else.
Marcus Boerger [Sat, 2 Feb 2008 14:19:03 +0000 (14:19 +0000)]
- Drop useless TODO, this would need to be fixed in a generic way
Marcus Boerger [Sat, 2 Feb 2008 14:03:13 +0000 (14:03 +0000)]
- It appears HEAD needs to be MFB'ed and this needs another fix now
Marcus Boerger [Sat, 2 Feb 2008 13:58:31 +0000 (13:58 +0000)]
- MFH Use new parameter parsing API
Marcus Boerger [Sat, 2 Feb 2008 13:56:59 +0000 (13:56 +0000)]
- Fix flag handling in message generation
Marcus Boerger [Sat, 2 Feb 2008 13:33:41 +0000 (13:33 +0000)]
- MFH Fix tests
Rasmus Lerdorf [Sat, 2 Feb 2008 09:53:44 +0000 (09:53 +0000)]
Countable requires SPL
Felipe Pena [Sat, 2 Feb 2008 04:03:03 +0000 (04:03 +0000)]
Fix the fix
Felipe Pena [Sat, 2 Feb 2008 03:20:51 +0000 (03:20 +0000)]
Fix tests (new error message)
Felipe Pena [Sat, 2 Feb 2008 03:15:46 +0000 (03:15 +0000)]
Fix tests (new error message)
Felipe Pena [Sat, 2 Feb 2008 03:00:57 +0000 (03:00 +0000)]
Fix tests (new error message)
Felipe Pena [Sat, 2 Feb 2008 02:45:44 +0000 (02:45 +0000)]
Fix tests (new error message)
Felipe Pena [Sat, 2 Feb 2008 02:36:08 +0000 (02:36 +0000)]
Fix tests (new error message)
Felipe Pena [Sat, 2 Feb 2008 02:29:27 +0000 (02:29 +0000)]
Fix tests (new error message)
Rasmus Lerdorf [Sat, 2 Feb 2008 01:51:17 +0000 (01:51 +0000)]
Another batch of fixed tests
Felipe Pena [Sat, 2 Feb 2008 01:48:29 +0000 (01:48 +0000)]
Ops, fix the fix
Felipe Pena [Sat, 2 Feb 2008 01:40:45 +0000 (01:40 +0000)]
Fix tests (new error message)
Rasmus Lerdorf [Sat, 2 Feb 2008 01:31:18 +0000 (01:31 +0000)]
Fix a few more tests
Rasmus Lerdorf [Sat, 2 Feb 2008 01:12:01 +0000 (01:12 +0000)]
What's the [0] for here? Looks wrong and causes stuff to segv
Rasmus Lerdorf [Sat, 2 Feb 2008 01:01:04 +0000 (01:01 +0000)]
Fix test and convert to UNIX line endings
Rasmus Lerdorf [Sat, 2 Feb 2008 00:55:35 +0000 (00:55 +0000)]
Fix more tests (some of these were not broken by the recent changes)
Rasmus Lerdorf [Sat, 2 Feb 2008 00:44:45 +0000 (00:44 +0000)]
2 more test fixes
Rasmus Lerdorf [Sat, 2 Feb 2008 00:29:17 +0000 (00:29 +0000)]
Fix some tests
Marcus Boerger [Fri, 1 Feb 2008 23:46:36 +0000 (23:46 +0000)]
- Fix build, thanks Christian Rodriguez for noticing
# I wonder why the other machine didn't catch this
Antony Dovgal [Fri, 1 Feb 2008 23:19:16 +0000 (23:19 +0000)]
fix test, add 64bit version
Rasmus Lerdorf [Fri, 1 Feb 2008 23:09:10 +0000 (23:09 +0000)]
Small tweak. Need to make array and string callback syntax behave the
same way. Also change "cannot" to "should not" since we obviously
"can" make the call.
Marcus Boerger [Fri, 1 Feb 2008 21:27:55 +0000 (21:27 +0000)]
[DOC]
- Fix callable/static mess, the following will now all result in a E_STRICT
. binding a dynamic function as a static callback
. static call of a dynamic function
. is_callable() on a static binding to a dynamic function
# [marcus@frodo PHP_5_3]$ php -a -d error_reporting=8191
# make: `sapi/cli/php' is up to date.
# Interactive shell
#
# php > class t{ function f() { echo "Funny\n"; } }
# php > $c = array("t","f");
# php > call_user_func($c);
#
# Strict Standards: call_user_func() expects parameter 1 to be a valid callback, non-static method t::f() cannot be called statically in php shell code on line 1
# Funny
# php > var_dump(is_callable($c));
#
# Strict Standards: Non-static method t::f() cannot be called statically in php shell code on line 1
# bool(true)
# php > t::f();
#
# Strict Standards: Non-static method t::f() should not be called statically in php shell code on line 1
# Funny
# php >
Felipe Pena [Fri, 1 Feb 2008 18:01:50 +0000 (18:01 +0000)]
MFH: Added new parameter for strstr(), stristr()
Zoe Slattery [Fri, 1 Feb 2008 17:45:38 +0000 (17:45 +0000)]
Command line script to help generate the basic framework of a PHPT
Zoe Slattery [Fri, 1 Feb 2008 17:21:18 +0000 (17:21 +0000)]
A few new tests for math functions - Note the "constants" test will fail on Windows - Bug 42143.
Robert Nicholson [Fri, 1 Feb 2008 16:33:17 +0000 (16:33 +0000)]
- a few more gd tests (committed on behalf of andy wharmby)
Josie Messa [Fri, 1 Feb 2008 15:29:59 +0000 (15:29 +0000)]
- Committing new tests for MBString extension.
More details can be found here: http://news.php.net/php.qa/62382
Felipe Pena [Fri, 1 Feb 2008 13:41:19 +0000 (13:41 +0000)]
New tests and fix tests (new error message)
Felipe Pena [Fri, 1 Feb 2008 12:28:44 +0000 (12:28 +0000)]
MFH: New parameter 'before_needle'
Hannes Magnusson [Fri, 1 Feb 2008 10:45:48 +0000 (10:45 +0000)]
glob:// was added in 5.3, no need to mention bug fixes for it
Christopher Jones [Thu, 31 Jan 2008 22:03:23 +0000 (22:03 +0000)]
MFH: New test for old, suspended bug
Rob Richards [Thu, 31 Jan 2008 21:58:57 +0000 (21:58 +0000)]
MFH: fix bug #42369 (Implicit conversion to string leaks memory)
add test
Rasmus Lerdorf [Thu, 31 Jan 2008 21:36:40 +0000 (21:36 +0000)]
Typo
Rasmus Lerdorf [Thu, 31 Jan 2008 21:03:32 +0000 (21:03 +0000)]
These two tests both need a timezone
Ilia Alshanetsky [Thu, 31 Jan 2008 20:50:27 +0000 (20:50 +0000)]
PDO is hardly experimental
Christopher Jones [Thu, 31 Jan 2008 20:21:27 +0000 (20:21 +0000)]
Update test environement description. Typos
Nuno Lopes [Thu, 31 Jan 2008 18:46:03 +0000 (18:46 +0000)]
try to fix build with gcc 4: take #2
Rasmus Lerdorf [Thu, 31 Jan 2008 18:31:54 +0000 (18:31 +0000)]
There are plenty of other non-Windows operating systems
Nuno Lopes [Thu, 31 Jan 2008 18:30:42 +0000 (18:30 +0000)]
try to fix build with gcc 4: take #1
Marcus Boerger [Thu, 31 Jan 2008 11:21:15 +0000 (11:21 +0000)]
- fix flag handling in is_callable()
Marcus Boerger [Thu, 31 Jan 2008 07:44:01 +0000 (07:44 +0000)]
- MFH Fix test
Elizabeth Marie Smith [Thu, 31 Jan 2008 02:35:44 +0000 (02:35 +0000)]
Fix windows build
Christopher Jones [Thu, 31 Jan 2008 01:33:30 +0000 (01:33 +0000)]
Merge DRCP & FAN support. PHP6 sync will happen later
Marcus Boerger [Wed, 30 Jan 2008 23:45:12 +0000 (23:45 +0000)]
- WS
Marcus Boerger [Wed, 30 Jan 2008 23:43:13 +0000 (23:43 +0000)]
- MFH Get rid of overoptimization
Marcus Boerger [Wed, 30 Jan 2008 23:08:13 +0000 (23:08 +0000)]
- Sub path may be NULL
Marcus Boerger [Wed, 30 Jan 2008 20:31:07 +0000 (20:31 +0000)]
- Fixed glob:// stream handling in (Recursive)DirectoryIterator.
Ilia Alshanetsky [Wed, 30 Jan 2008 18:25:51 +0000 (18:25 +0000)]
Fixed bug #43981 (gmp_div_r() does not preserve the sign of 1st argument)
Zoe Slattery [Wed, 30 Jan 2008 17:50:38 +0000 (17:50 +0000)]
Removing superfluous --INI-- section
Felipe Pena [Wed, 30 Jan 2008 16:06:44 +0000 (16:06 +0000)]
Fix test
Rob Richards [Wed, 30 Jan 2008 15:28:46 +0000 (15:28 +0000)]
MFH: fix bug #41562 (SimpleXML memory issue)
Felipe Pena [Wed, 30 Jan 2008 14:49:20 +0000 (14:49 +0000)]
Fix test
Felipe Pena [Wed, 30 Jan 2008 14:45:20 +0000 (14:45 +0000)]
Revert
Robin Fernandes [Wed, 30 Jan 2008 14:25:57 +0000 (14:25 +0000)]
Adding tests for class features, including __autoload(), property inheritance rules and class constants.
Felipe Pena [Wed, 30 Jan 2008 13:42:01 +0000 (13:42 +0000)]
Fix the fix (isInstance - order of parameters)
Antony Dovgal [Wed, 30 Jan 2008 12:50:59 +0000 (12:50 +0000)]
fix ZTS build
Felipe Pena [Wed, 30 Jan 2008 11:43:10 +0000 (11:43 +0000)]
Fix tests
Felipe Pena [Wed, 30 Jan 2008 10:27:28 +0000 (10:27 +0000)]
Fixed Bug#43926 (isInstance() isn't equivalent to instanceof operator)
Dmitry Stogov [Wed, 30 Jan 2008 09:41:12 +0000 (09:41 +0000)]
Improved PHP binary size and startup speed with GCC4 visibility control (Nuno)
Rasmus Lerdorf [Wed, 30 Jan 2008 08:52:17 +0000 (08:52 +0000)]
fix typo
Dmitry Stogov [Wed, 30 Jan 2008 08:10:17 +0000 (08:10 +0000)]
ZTS fix
Sebastian Bergmann [Wed, 30 Jan 2008 06:48:13 +0000 (06:48 +0000)]
MFH: Fix arginfo.
Stanislav Malyshev [Wed, 30 Jan 2008 03:17:57 +0000 (03:17 +0000)]
fix #43941: invalid utf-8 not accepted
Ilia Alshanetsky [Wed, 30 Jan 2008 00:07:38 +0000 (00:07 +0000)]
Change readline extension status to Working
Rasmus Lerdorf [Tue, 29 Jan 2008 23:21:11 +0000 (23:21 +0000)]
Fixed bug #43957 (utf8_decode() bogus conversion of partial multibyte UTF8 char)
Rob Richards [Tue, 29 Jan 2008 22:06:43 +0000 (22:06 +0000)]
MFH: fix win32 build
Stanislav Malyshev [Tue, 29 Jan 2008 22:03:01 +0000 (22:03 +0000)]
rm cruft
Sebastian Bergmann [Tue, 29 Jan 2008 21:21:20 +0000 (21:21 +0000)]
MFH: Fix arginfo and prototype.
Nuno Lopes [Tue, 29 Jan 2008 20:18:02 +0000 (20:18 +0000)]
upgrade to PCRE 7.6.
#changes to code are minimal. this fixes a security bug
Derick Rethans [Tue, 29 Jan 2008 20:14:18 +0000 (20:14 +0000)]
- That should have been ||.
Derick Rethans [Tue, 29 Jan 2008 20:12:53 +0000 (20:12 +0000)]
- Make whitespace the same as in HEAD.
Derick Rethans [Tue, 29 Jan 2008 20:10:24 +0000 (20:10 +0000)]
- MFH: Fixed bug #43960 (strtotime() returns timestamp in the future when given
a bogus string).
Dmitry Stogov [Tue, 29 Jan 2008 20:01:31 +0000 (20:01 +0000)]
Fixed bug #43968 (Extending internal class causes a crash)
The fix is a workaround for GCC optizer bug.
Andrey Hristov [Tue, 29 Jan 2008 18:11:46 +0000 (18:11 +0000)]
Fix the build, add a missing file
Sebastian Bergmann [Tue, 29 Jan 2008 15:55:23 +0000 (15:55 +0000)]
MFH: Add Reflection API metadata for DOMXPath.
Sebastian Bergmann [Tue, 29 Jan 2008 15:23:18 +0000 (15:23 +0000)]
MFH: Add Reflection API metadata for DOMNode.
Dmitry Stogov [Tue, 29 Jan 2008 14:24:55 +0000 (14:24 +0000)]
Fixed bug #43491 (Under certain conditions, file_exists() never returns)
Antony Dovgal [Tue, 29 Jan 2008 13:39:57 +0000 (13:39 +0000)]
entry moved to 5_2
Dmitry Stogov [Tue, 29 Jan 2008 12:25:25 +0000 (12:25 +0000)]
missing spaces
Antony Dovgal [Tue, 29 Jan 2008 12:23:48 +0000 (12:23 +0000)]
fix test
Derick, you're adding new methods too fast =)
Andrey Hristov [Tue, 29 Jan 2008 11:59:53 +0000 (11:59 +0000)]
Moved initialization code into a function.
Dmitry Stogov [Tue, 29 Jan 2008 11:12:57 +0000 (11:12 +0000)]
Fixed bug #43323 (Wrong count abstract methods). (Felipe, Dmitry)
Dmitry Stogov [Tue, 29 Jan 2008 11:12:07 +0000 (11:12 +0000)]
Fixed types
Dmitry Stogov [Tue, 29 Jan 2008 10:45:07 +0000 (10:45 +0000)]
Fixed bug #43505 (Assign by reference bug)
Dmitry Stogov [Tue, 29 Jan 2008 09:59:42 +0000 (09:59 +0000)]
Fixed bug #43918 (Segmentation fault in garbage collector)
Antony Dovgal [Tue, 29 Jan 2008 08:57:26 +0000 (08:57 +0000)]
BFN
Robert Nicholson [Tue, 29 Jan 2008 08:50:43 +0000 (08:50 +0000)]
- MFH compact_variation1.phpt - fix for bug #29044
Sebastian Bergmann [Tue, 29 Jan 2008 07:51:43 +0000 (07:51 +0000)]
MFH: Add Reflection API metadata for XSLTProcessor.
Ilia Alshanetsky [Tue, 29 Jan 2008 01:17:30 +0000 (01:17 +0000)]
Simplify code
Antony Dovgal [Tue, 29 Jan 2008 00:39:46 +0000 (00:39 +0000)]
MFH: fix #43596 (array_slice(): $length arg ignored when it is 0)
Antony Dovgal [Tue, 29 Jan 2008 00:07:26 +0000 (00:07 +0000)]
MFH: fix typo and bug #43646
Stanislav Malyshev [Mon, 28 Jan 2008 23:55:53 +0000 (23:55 +0000)]
fix type
Andrey Hristov [Mon, 28 Jan 2008 23:23:08 +0000 (23:23 +0000)]
Moving extension specific code to php_mysqlnd.c as the old rule is.