Marcus Boerger
d339ebc10f
- WS
2007-11-23 13:50:20 +00:00
Dmitry Stogov
86eaf4bd1e
Fixed bug #42952 (soap cache file is created with insecure permissions)
2007-11-23 10:02:53 +00:00
Greg Beaver
2d13f86703
MFB fixes to phar.phar
2007-11-23 05:51:59 +00:00
Ilia Alshanetsky
e02a63c98c
MFB: Fixed bug #43377 (PHP crashes with invalid argument for DateTimeZone)
2007-11-23 00:15:37 +00:00
Dmitry Stogov
47dc82ecb9
Fixed bug #43128 (Very long class name causes segfault)
2007-11-22 13:33:53 +00:00
Derick Rethans
1e9fec2a49
- Fixed weights array, which was broken with:
...
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dns.c?r1=1.80&r2=1.81
2007-11-22 10:18:30 +00:00
Greg Beaver
b21f49c7c7
MFB fixes for tests
2007-11-22 05:47:28 +00:00
Ilia Alshanetsky
824738fb05
MFB: Fixed bug #43041 (micro-optimizations in pgsql data retrieval)
2007-11-22 00:20:40 +00:00
Robert Nicholson
b0601e161d
Add some more pcre tests
2007-11-21 18:23:02 +00:00
Jani Taskinen
d4664800ac
- Added test for chown bug
2007-11-21 11:31:49 +00:00
Jani Taskinen
ba1e024895
- Fix crash when chown() 2nd parameter is something else than integer or string
2007-11-21 11:28:26 +00:00
Stanislav Malyshev
3c0869343f
fix #42866 , from Claudio Cherubino
2007-11-21 02:27:07 +00:00
Stanislav Malyshev
91701d34b0
test for 42866
2007-11-21 02:24:47 +00:00
Ilia Alshanetsky
90f57a82b5
revert previous pdo patch
2007-11-20 23:27:56 +00:00
Hannes Magnusson
1727c712b6
- Add support for optional values
...
- Add support for = as seperator
2007-11-20 22:42:47 +00:00
Johannes Schlüter
6e7ba5ba5f
Add stream_supports_lock() function (Benjamin Schulz)
2007-11-20 22:16:20 +00:00
Johannes Schlüter
e630ee25d6
Add msg_queue_exists() function (Benjamin Schulz)
2007-11-20 21:24:35 +00:00
Marcus Boerger
5be76b1a85
- Add phar.phar to package
2007-11-20 15:55:37 +00:00
Ilia Alshanetsky
7b6cfe903e
MFB: Fixed bug #42978 (mismatch between number of bound params and values
...
causes a crash in pdo_pgsql)
2007-11-20 14:22:40 +00:00
Dmitry Stogov
3f247aaf10
Fixed bug #43136 (possible crash on script execution timeout. The EG(function_state_ptr) is completely removed, EG(current_execute_data)->function_state must be used instead)
2007-11-20 09:51:44 +00:00
Greg Beaver
43c7e6fa3b
fix faulty logic on verification of phar
2007-11-20 05:34:35 +00:00
Greg Beaver
be023d6f62
much better fix for the problem of phar://c:\path\to\blah.phar
...
don't use php_parse_url() at all, and always unixify paths on copied strings.
our modification was modifying the zval original string, so a user would pass in
phar://c:\path\to\blah.phar
and their string would change to phar://c:/path/to/blah.phar - bad.
Now using
include 'phar://' . __FILE__ . '/index.php';
works on both unix and windows seamlessly, as well as $a = new Phar(__FILE__)
for use in the loader stub
2007-11-19 23:10:05 +00:00
Dmitry Stogov
ab34cdc706
fixed SIGSEGV in chgrp()
2007-11-19 15:55:48 +00:00
Ilia Alshanetsky
53f25297f4
MFB 'L' size support
2007-11-19 13:57:02 +00:00
Antony Dovgal
f5ae1787b2
fix test broken by Sara's commit
2007-11-19 11:12:21 +00:00
Dmitry Stogov
0ab5a2c203
Fixed tests
2007-11-19 08:21:58 +00:00
Ilia Alshanetsky
bd0f06180d
Removed duplicate case. (Thanks Hannes)
2007-11-18 16:51:11 +00:00
Ilia Alshanetsky
13e0fa2ba0
MFB: Fixed bug #42261 (Incorrect lengths for date and boolean data types)
2007-11-18 14:20:28 +00:00
Greg Beaver
a9af692645
make phar use this build's PHP instead of global PHP [gopal]
2007-11-17 05:50:00 +00:00
Raghubansh Kumar
9c78f2c08b
New testcases for sizeof() function
2007-11-16 17:52:26 +00:00
Raghubansh Kumar
7e84b55003
fix test for linux64 - choosing smaller float values
2007-11-16 17:35:38 +00:00
Raghubansh Kumar
87be9bfd14
fix tests: removed values that generate diff. output on Linux64
2007-11-16 17:11:01 +00:00
Jani Taskinen
fc5d24284f
- Fixed bug #43092 (curl_copy_handle() crashes with > 32 chars long URL)
2007-11-16 14:18:59 +00:00
Jani Taskinen
113ab1bc79
fix bug number
2007-11-16 12:29:29 +00:00
Jani Taskinen
bf84a7a9a9
- Fixed bug #31911 (mb_ereg*_replace() crashes when replacement string
...
is invalid PHP expression and 'e' option is used)
2007-11-16 12:26:05 +00:00
Greg Beaver
9d7d44d60c
typo
2007-11-16 04:17:37 +00:00
Antony Dovgal
c70b4662a5
fix test (thanks to Felipe Pena for noticing)
2007-11-15 22:14:04 +00:00
Hannes Magnusson
ebc540d2c9
- Allow numeric options
...
- Add tests
2007-11-15 13:11:48 +00:00
Greg Beaver
4a86b3d6ea
Ensure that the same phar can be referenced in multiple logical ways:
...
1) full path, with \ or / path separator
2) relative path to getcwd()
This should fix the last remaining windows-related quirks as well as similar problems
on unix
2007-11-15 05:21:11 +00:00
Raghubansh Kumar
185411fd0d
New testcases for uasort() function
2007-11-14 17:21:09 +00:00
Derick Rethans
bf10f44aa2
- Add a testcase for chgrp() with a NULL as group name, which crashes ATM.
2007-11-14 15:51:35 +00:00
Hannes Magnusson
31aa5f545c
MFB; Fix test
2007-11-14 15:22:45 +00:00
Hannes Magnusson
93850f2d70
MFB5.3: Fixed bug#43293 (Multiple segfaults in getopt())
2007-11-14 14:55:44 +00:00
Etienne Kneuss
4faad51ab1
Fix typos
2007-11-13 23:37:09 +00:00
Ilia Alshanetsky
d703b11676
MFB: Fixed bug #43279 (pg_send_query_params() converts all elements in 'params'
...
to strings)
2007-11-13 20:08:17 +00:00
Dmitry Stogov
d96b6fe0c1
Fixed bug #42692 (Procedure 'int1' not present with doc/lit SoapServer)
2007-11-13 15:10:28 +00:00
Antony Dovgal
c4bf9143c8
remove Oracle8 support (it should have been done long ago..)
2007-11-13 11:09:30 +00:00
Dmitry Stogov
bc939dce43
Fixed bug #43248 (backward compatibility break in realpath())
2007-11-13 09:47:19 +00:00
Greg Beaver
999961f080
begin win32 fixes for Phar object - still have a problem I can't track down yet, but it's only a matter of time before it is killed too
...
when passing in a full path with drive letter to the Phar object, we were
then passing "phar://C:/path/to/blah.phar" to php_parse_url(), which
thinks it is getting a valid url scheme "phar", host "C" path "/path/to/blah.phar"
we now pass "phar:///C:/path/to/blah.phar" to make it fail, and then properly
parse the url inside phar
2007-11-13 05:57:14 +00:00
Rob Richards
62d03825b2
fix bug #43221 (SimpleXML adding default namespace in addAttribute)
...
add test
2007-11-12 18:58:01 +00:00