]>
granicus.if.org Git - php/log
Nuno Lopes [Thu, 8 Mar 2007 20:26:48 +0000 (20:26 +0000)]
MFB: fix thread unsafety in the gif reader code (merge from libgd cvs)
Marcus Boerger [Thu, 8 Mar 2007 17:30:28 +0000 (17:30 +0000)]
- Improved version of ternary shortcut
<changelog@php.net> [Thu, 8 Mar 2007 01:31:10 +0000 (01:31 +0000)]
ChangeLog update
Antony Dovgal [Thu, 8 Mar 2007 00:43:06 +0000 (00:43 +0000)]
fix #40752 (parse_ini_file() segfaults when a scalar setting is redeclared as an array)
Zoe Slattery [Wed, 7 Mar 2007 13:22:26 +0000 (13:22 +0000)]
New test case for array_slice
Antony Dovgal [Wed, 7 Mar 2007 09:02:18 +0000 (09:02 +0000)]
fix #40727 (segfault in PDO when failed to bind parameters)
<changelog@php.net> [Wed, 7 Mar 2007 01:31:05 +0000 (01:31 +0000)]
ChangeLog update
Derick Rethans [Tue, 6 Mar 2007 21:29:33 +0000 (21:29 +0000)]
- MF52: Updated timezone database to version 2007.3.
Antony Dovgal [Tue, 6 Mar 2007 21:07:52 +0000 (21:07 +0000)]
comment out unused function
need to figure out why and what for it has been added in the first place..
Antony Dovgal [Tue, 6 Mar 2007 20:58:40 +0000 (20:58 +0000)]
declare zend_mm_random() only when needed
Antony Dovgal [Tue, 6 Mar 2007 20:53:11 +0000 (20:53 +0000)]
fix tests
Antony Dovgal [Tue, 6 Mar 2007 20:45:15 +0000 (20:45 +0000)]
fix tests
Antony Dovgal [Tue, 6 Mar 2007 20:35:49 +0000 (20:35 +0000)]
be consistent with non-unicode implementation
Sara Golemon [Tue, 6 Mar 2007 20:04:05 +0000 (20:04 +0000)]
Fix handling over overridden file:// wrapper
Antony Dovgal [Tue, 6 Mar 2007 19:59:13 +0000 (19:59 +0000)]
fix segfault in import_request_variables() and its test
I'm not completely sure it's correct to import numeric vars like _POST["1"] etc.
Uwe Schindler [Tue, 6 Mar 2007 19:47:12 +0000 (19:47 +0000)]
Update function names for PHP6 to php6*
Antony Dovgal [Tue, 6 Mar 2007 19:45:02 +0000 (19:45 +0000)]
initialize variable
Antony Dovgal [Tue, 6 Mar 2007 19:25:46 +0000 (19:25 +0000)]
fix tests
Uwe Schindler [Tue, 6 Mar 2007 18:15:04 +0000 (18:15 +0000)]
remove (large) static buffers for header names and request uri
Uwe Schindler [Tue, 6 Mar 2007 16:19:36 +0000 (16:19 +0000)]
use slprintf instead of snprintf and remove 0termination things (because slprintf is always available now)
Antony Dovgal [Tue, 6 Mar 2007 10:13:37 +0000 (10:13 +0000)]
fix AC_TRY_COMPILE usage
<changelog@php.net> [Tue, 6 Mar 2007 01:31:05 +0000 (01:31 +0000)]
ChangeLog update
Marcus Boerger [Tue, 6 Mar 2007 01:21:36 +0000 (01:21 +0000)]
- Add missing return value check
Marcus Boerger [Tue, 6 Mar 2007 00:55:46 +0000 (00:55 +0000)]
- Revert back to sprintf (we could define snprintf for windows but we don't)
Uwe Schindler [Mon, 5 Mar 2007 16:28:39 +0000 (16:28 +0000)]
snprintf patch
andy wharmby [Mon, 5 Mar 2007 15:53:09 +0000 (15:53 +0000)]
Remove bug entry for 35872 as now in 5.2
Michael Wallner [Mon, 5 Mar 2007 14:10:05 +0000 (14:10 +0000)]
- fix ws as requested by derick
Michael Wallner [Mon, 5 Mar 2007 14:05:31 +0000 (14:05 +0000)]
- fix bug #40691: add comparison object handler
andy wharmby [Mon, 5 Mar 2007 12:56:26 +0000 (12:56 +0000)]
Fixed bug #35872 (Prevent object store references during RSHUTDOWN)
<changelog@php.net> [Mon, 5 Mar 2007 01:31:05 +0000 (01:31 +0000)]
ChangeLog update
Marcus Boerger [Sun, 4 Mar 2007 16:25:57 +0000 (16:25 +0000)]
- Implement '?:'
[DOC] "expr1 ?: expr1" is a shortcut for: "expr1 ? expr1 : expr2" as
exists in gcc and discussed some time back. Note that this is not
an implementation ifsetor($var, default). While ifsetor would not
generate any message for non existing variables or array indices
the ternary shortcut does. Also the ternary shortcut does a boolean
evaluation rather then checking for isset(). That way ther ternary
shortcut can work on any expression while ifsetor can only work on
variables. Also to be silent one has do do: "@$expr1 ?: $expr2".
Marcus Boerger [Sun, 4 Mar 2007 12:13:20 +0000 (12:13 +0000)]
- Missed one is-dot check
Marcus Boerger [Sun, 4 Mar 2007 12:06:55 +0000 (12:06 +0000)]
- Match docu with implementation
- RecursiveFilterIterator::accept() needs to be abstract
Marcus Boerger [Sun, 4 Mar 2007 12:02:16 +0000 (12:02 +0000)]
- Simplify
<changelog@php.net> [Sun, 4 Mar 2007 01:31:04 +0000 (01:31 +0000)]
ChangeLog update
Marcus Boerger [Sun, 4 Mar 2007 00:42:30 +0000 (00:42 +0000)]
- And finally use prefix style names for consistency sake
Edin Kadribasic [Sun, 4 Mar 2007 00:41:36 +0000 (00:41 +0000)]
MFB: Check that manifest file exists before trying to embed it
Marcus Boerger [Sun, 4 Mar 2007 00:36:08 +0000 (00:36 +0000)]
- Reverting glob on child logic makes globbing work better with the example
code
Marcus Boerger [Sun, 4 Mar 2007 00:23:07 +0000 (00:23 +0000)]
- Fix a minor issue with glob support - forgot to set length of string
- Add ability to not use glob on subdirs
Marcus Boerger [Sat, 3 Mar 2007 23:56:43 +0000 (23:56 +0000)]
- Missed to add [ to meta char check
Marcus Boerger [Sat, 3 Mar 2007 23:41:43 +0000 (23:41 +0000)]
- Glob might require us to refetch the path for every entry
Marcus Boerger [Sat, 3 Mar 2007 23:41:10 +0000 (23:41 +0000)]
- Allow to retrieve flags with php_glob_stream_get_count()
- Detect meta chars in pathand switch to append mode so that path can
actually changes for each entry
Marcus Boerger [Sat, 3 Mar 2007 23:07:33 +0000 (23:07 +0000)]
- Add DirectoryIterator::count()
Marcus Boerger [Sat, 3 Mar 2007 23:04:57 +0000 (23:04 +0000)]
- Allow to get number of entries of a glob stream
Marcus Boerger [Sat, 3 Mar 2007 22:30:07 +0000 (22:30 +0000)]
- One more tab to go
Marcus Boerger [Sat, 3 Mar 2007 22:28:21 +0000 (22:28 +0000)]
- Change to hex to help read-/maintainability
Marcus Boerger [Sat, 3 Mar 2007 21:41:56 +0000 (21:41 +0000)]
- Add glob support for DirectoryIterator
Marcus Boerger [Sat, 3 Mar 2007 21:40:23 +0000 (21:40 +0000)]
- Add glob stream to win build
Marcus Boerger [Sat, 3 Mar 2007 21:38:25 +0000 (21:38 +0000)]
- Provide access to pattern used in glob
Marcus Boerger [Sat, 3 Mar 2007 20:56:45 +0000 (20:56 +0000)]
- php_stream_is() requires php_glob_stream_ops to be public
- little bit of additional whitespace
Marcus Boerger [Sat, 3 Mar 2007 20:41:12 +0000 (20:41 +0000)]
- Add glob stream wrapper
Marcus Boerger [Sat, 3 Mar 2007 19:07:51 +0000 (19:07 +0000)]
- Fix realpath() logic
Marcus Boerger [Sat, 3 Mar 2007 18:59:53 +0000 (18:59 +0000)]
-A stream wrapper might only allow directory access
Marcus Boerger [Sat, 3 Mar 2007 14:51:40 +0000 (14:51 +0000)]
- SplFileInfo::getRealPath() is not always present
Marcus Boerger [Sat, 3 Mar 2007 14:46:44 +0000 (14:46 +0000)]
# This block got lost somehow
Marcus Boerger [Sat, 3 Mar 2007 14:37:17 +0000 (14:37 +0000)]
- [DOC] Add SplInfo::getBasename(), DirectoryIterator::getBasename()
Marcus Boerger [Sat, 3 Mar 2007 13:46:19 +0000 (13:46 +0000)]
- Catch empty class name error earlier
Johannes Schlüter [Sat, 3 Mar 2007 10:27:04 +0000 (10:27 +0000)]
- Fix old behaviour, ob_list_handlers() should always return an array
<changelog@php.net> [Sat, 3 Mar 2007 01:31:02 +0000 (01:31 +0000)]
ChangeLog update
Stanislav Malyshev [Fri, 2 Mar 2007 22:04:46 +0000 (22:04 +0000)]
limit nesting level of input variables
Nuno Lopes [Fri, 2 Mar 2007 18:54:41 +0000 (18:54 +0000)]
MFB
Nuno Lopes [Fri, 2 Mar 2007 18:46:16 +0000 (18:46 +0000)]
MFB
#Pierre: libgd isn't affected. this problem was caused by the recent conversion to strlcpy()
Antony Dovgal [Fri, 2 Mar 2007 09:12:13 +0000 (09:12 +0000)]
mask resource numbers
<changelog@php.net> [Fri, 2 Mar 2007 01:31:05 +0000 (01:31 +0000)]
ChangeLog update
Antony Dovgal [Thu, 1 Mar 2007 23:28:51 +0000 (23:28 +0000)]
new tests by Chris and me
Antony Dovgal [Thu, 1 Mar 2007 23:28:13 +0000 (23:28 +0000)]
MFB: allocate and define descriptors dynamically
Nuno Lopes [Thu, 1 Mar 2007 18:41:45 +0000 (18:41 +0000)]
MFB
Antony Dovgal [Thu, 1 Mar 2007 11:29:34 +0000 (11:29 +0000)]
fix iconv cross-compilation
Antony Dovgal [Thu, 1 Mar 2007 11:23:07 +0000 (11:23 +0000)]
fix #40678 (Cross compilation fails)
<changelog@php.net> [Thu, 1 Mar 2007 01:31:07 +0000 (01:31 +0000)]
ChangeLog update
Hannes Magnusson [Wed, 28 Feb 2007 10:46:16 +0000 (10:46 +0000)]
Typo
<changelog@php.net> [Wed, 28 Feb 2007 01:31:01 +0000 (01:31 +0000)]
ChangeLog update
<changelog@php.net> [Tue, 27 Feb 2007 01:31:12 +0000 (01:31 +0000)]
ChangeLog update
Marcus Boerger [Mon, 26 Feb 2007 22:46:13 +0000 (22:46 +0000)]
- Add missing access check
Marcus Boerger [Mon, 26 Feb 2007 22:32:57 +0000 (22:32 +0000)]
- Add SplFileInfo::getLinkTarget
- Add SplFileInfo::getRealPath
Antony Dovgal [Mon, 26 Feb 2007 21:53:48 +0000 (21:53 +0000)]
nuke dead code
Antony Dovgal [Mon, 26 Feb 2007 20:35:41 +0000 (20:35 +0000)]
simplify disk_*_space() functions sources by moving ifdef'ed implementations into separate functions
Dmitry Stogov [Mon, 26 Feb 2007 16:20:14 +0000 (16:20 +0000)]
Fixed tests
Antony Dovgal [Mon, 26 Feb 2007 14:51:26 +0000 (14:51 +0000)]
remind about 'make test'
Antony Dovgal [Mon, 26 Feb 2007 14:11:14 +0000 (14:11 +0000)]
fix folding
Rob Richards [Mon, 26 Feb 2007 12:37:57 +0000 (12:37 +0000)]
fix win build
Antony Dovgal [Mon, 26 Feb 2007 11:55:32 +0000 (11:55 +0000)]
fix CS/WS
Antony Dovgal [Mon, 26 Feb 2007 11:43:28 +0000 (11:43 +0000)]
MFB: use zend_spprintf()
Dmitry Stogov [Mon, 26 Feb 2007 10:22:44 +0000 (10:22 +0000)]
ZTS fix
Antony Dovgal [Mon, 26 Feb 2007 09:57:54 +0000 (09:57 +0000)]
new test
Dmitry Stogov [Mon, 26 Feb 2007 09:39:08 +0000 (09:39 +0000)]
poll() is not affected by FD_SETSIZE (Tony)
<changelog@php.net> [Mon, 26 Feb 2007 01:31:05 +0000 (01:31 +0000)]
ChangeLog update
Antony Dovgal [Sun, 25 Feb 2007 23:16:32 +0000 (23:16 +0000)]
do not allow db without fields
fix test
Antony Dovgal [Sun, 25 Feb 2007 22:58:57 +0000 (22:58 +0000)]
zerofill socket structs
Nuno Lopes [Sun, 25 Feb 2007 18:48:19 +0000 (18:48 +0000)]
MFB: update pcre symbol list
Dmitry Stogov [Sun, 25 Feb 2007 16:12:18 +0000 (16:12 +0000)]
Fixed bug #40591 (list()="string"; gives invalid opcode)
Dmitry Stogov [Sun, 25 Feb 2007 13:24:25 +0000 (13:24 +0000)]
Fixed bug #40609 (Segfaults when using more than one SoapVar in a request). (Rob, Dmitry)
Marcus Boerger [Sun, 25 Feb 2007 13:09:07 +0000 (13:09 +0000)]
- Readability
Pierre Joye [Sun, 25 Feb 2007 02:56:03 +0000 (02:56 +0000)]
- MFB: sync with libgd.org, patch from Kees Cook
<changelog@php.net> [Sun, 25 Feb 2007 01:31:08 +0000 (01:31 +0000)]
ChangeLog update
Antony Dovgal [Sat, 24 Feb 2007 21:29:22 +0000 (21:29 +0000)]
fix #40621 (Crash when constructor called inappropriately (statically))
Pierre Joye [Sat, 24 Feb 2007 19:09:18 +0000 (19:09 +0000)]
- MFB: Fixed snprintf() usage
Pierre Joye [Sat, 24 Feb 2007 18:59:37 +0000 (18:59 +0000)]
- merge from pecl: Force binary mode on windows
Pierre Joye [Sat, 24 Feb 2007 18:50:53 +0000 (18:50 +0000)]
- MFB: free temp buffer
Marcus Boerger [Sat, 24 Feb 2007 18:37:46 +0000 (18:37 +0000)]
- MFB Synch