]> granicus.if.org Git - php/log
php
8 years agoMerge branch 'master' of git.php.net:/php-src
Xinchen Hui [Thu, 11 Aug 2016 11:58:02 +0000 (19:58 +0800)]
Merge branch 'master' of git.php.net:/php-src

* 'master' of git.php.net:/php-src:
  ReflectionType improvements
  Fix #72810. Add check for SKIP_ONLINE_TESTS
  msql > mysqli, use a better extension name as an example in php.ini, as we do not have msql support anymore (Sorry Rasmus!)
  Remove sql.safe_mode

8 years agoCheck them in autoconf
Xinchen Hui [Thu, 11 Aug 2016 11:57:30 +0000 (19:57 +0800)]
Check them in autoconf

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Thu, 11 Aug 2016 10:20:02 +0000 (12:20 +0200)]
Merge branch 'PHP-7.1'

8 years agoReflectionType improvements
Aaron Piotrowski [Tue, 9 Aug 2016 18:54:06 +0000 (13:54 -0500)]
ReflectionType improvements

Added ReflectionNamedType and updated ReflectionType::__toString()

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Thu, 11 Aug 2016 10:01:55 +0000 (12:01 +0200)]
Merge branch 'PHP-7.1'

8 years agoFix #72810. Add check for SKIP_ONLINE_TESTS
Ville Hukkamäki [Thu, 11 Aug 2016 09:08:04 +0000 (12:08 +0300)]
Fix #72810. Add check for SKIP_ONLINE_TESTS

8 years agoMerge branch 'intrinsics_backport' of https://github.com/TazeTSchnitzel/php-src
Xinchen Hui [Thu, 11 Aug 2016 03:34:56 +0000 (11:34 +0800)]
Merge branch 'intrinsics_backport' of https://github.com/TazeTSchnitzel/php-src

* 'intrinsics_backport' of https://github.com/TazeTSchnitzel/php-src:
  Use checked add/sub intrinsics instead of asm for ++ and --
  Use checked arithmetic intrinsics instead of asm, when possible

8 years agomsql > mysqli, use a better extension name as an example in php.ini, as we do not...
Kalle Sommer Nielsen [Thu, 11 Aug 2016 03:11:17 +0000 (05:11 +0200)]
msql > mysqli, use a better extension name as an example in php.ini, as we do not have msql support anymore (Sorry Rasmus!)

8 years agoRemove sql.safe_mode
Kalle Sommer Nielsen [Thu, 11 Aug 2016 03:06:55 +0000 (05:06 +0200)]
Remove sql.safe_mode

This is one of the last old and odd deprecated settings we still have in PHP, it was never fully implemented in all the database extensions and should probably have been gone back in 5.4, along with safe_mode. Although if my memory strikes me right, mysql was also supporting it back then, but not mysqli.

So far only interbase was supporting this feature, and the removal of it causes two effects for interbase:
 - CREATE DATABASE is now allowed no matter
 - The default database set by php.ini (ibase.default_db) is no longer forced

http://php.net/ini.core#ini.sql.safe-mode

8 years agoWe do not need to check the return value of php_win32_init_gettimeofday() anymore...
Kalle Sommer Nielsen [Thu, 11 Aug 2016 02:35:51 +0000 (04:35 +0200)]
We do not need to check the return value of php_win32_init_gettimeofday() anymore, as the symbol is always going to be available to us

8 years agoMerge branch 'master' of git.php.net:php-src
Kalle Sommer Nielsen [Thu, 11 Aug 2016 02:14:01 +0000 (04:14 +0200)]
Merge branch 'master' of git.php.net:php-src

8 years agoThe call to FreeLibrary() should be within the if, so we don't pass INVALID_HANDLE_VA...
Kalle Sommer Nielsen [Thu, 11 Aug 2016 02:13:34 +0000 (04:13 +0200)]
The call to FreeLibrary() should be within the if, so we don't pass INVALID_HANDLE_VALUE to it, in case LoadLibrary() fails

8 years agoMerge branch 'PHP-7.1'
Yasuo Ohgaki [Thu, 11 Aug 2016 00:17:57 +0000 (09:17 +0900)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Fix URL rewriter issues

8 years agoGet rid of these slow calls to LoadLibrary()/GetProcAddress() calls on Windows, we...
Kalle Sommer Nielsen [Thu, 11 Aug 2016 00:09:50 +0000 (02:09 +0200)]
Get rid of these slow calls to LoadLibrary()/GetProcAddress() calls on Windows, we require Windows Vista as bare minimum for PHP anyway, so it does not make any sense to do this slow emulation anyway.

GD:
 - PrintWindow() is available as of Windows XP, it requires linking to User32.lib, which config.w32 for ext/gd already.

CLI:
 - The borrowed functions from PostgreSQL to set the titles of the console window uses SetConsoleTitle() and GetConsoleTitle(), both are available as of Windows 2000 from Kernel32.lib which we already are linking against.

Standard:
 - The disk space utility functions uses GetDiskFreeSpaceExA() which is available as of Windows XP, again links to Kernel32.lib.
 - The symlink() PHP function uses CreateSymbolicLinkA() which is available from Windows Vista, again from Kernel32.lib.
 - php_get_windows_name() in info.c uses GetNativeSystemInfo() which is available as of Windows XP and GetProductInfo() which is available as of Windows Vista, both are again from Kernel32.lib.

Notes:
 - ext/interbase & ext/pdo_firebird uses GetProcAddress(), I'm not entirely sure how to handle this one.
 - ext/sqlite3, this is apart of the bundled libsqlite3, I don't really wanna play around with our bundled libs and make it a bigger issue for those who maintain and upgrade them.
 - ext/readline, the call to GetProcAddress() here does not do any system calls, so it is left as is.
 - win32/ioutil.c uses GetProcAddress(), but the function it attempts to load (PathCchCanonicalizeEx()) is only available from Windows 8 and greater (Pathcch.lib linkage).
 - win32/time.c uses GetSystemTimePreciseAsFileTime() which is available from Windows 8 and greater to get the current system date and time which the highest possible precision and falls back to GetSystemTimeAsFileTime() (available as of Windows 2000), again Kernel32.lib, the GetSystemTimePreciseAsFileTime() is left in a GetProcAddress().

8 years agoFix URL rewriter issues
Yasuo Ohgaki [Wed, 10 Aug 2016 23:03:45 +0000 (08:03 +0900)]
Fix URL rewriter issues

8 years agoMerge branch 'PHP-7.1'
Yasuo Ohgaki [Wed, 10 Aug 2016 23:10:08 +0000 (08:10 +0900)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Support "git worktree"

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Yasuo Ohgaki [Wed, 10 Aug 2016 23:09:37 +0000 (08:09 +0900)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Support "git worktree"

8 years agoMerge branch 'PHP-5.6' into PHP-7.0
Yasuo Ohgaki [Wed, 10 Aug 2016 23:09:05 +0000 (08:09 +0900)]
Merge branch 'PHP-5.6' into PHP-7.0

* PHP-5.6:
  Support "git worktree"

8 years agoSupport "git worktree"
Yasuo Ohgaki [Wed, 10 Aug 2016 23:08:26 +0000 (08:08 +0900)]
Support "git worktree"

8 years agoMerge branch 'PHP-7.1'
Leigh [Wed, 10 Aug 2016 22:34:14 +0000 (23:34 +0100)]
Merge branch 'PHP-7.1'

8 years agoPreserve BC for rand() AND mt_rand() where min > max
Leigh [Wed, 10 Aug 2016 22:32:32 +0000 (23:32 +0100)]
Preserve BC for rand() AND mt_rand() where min > max

8 years agoMerge branch 'PHP-7.1'
Christoph M. Becker [Wed, 10 Aug 2016 16:11:11 +0000 (18:11 +0200)]
Merge branch 'PHP-7.1'

8 years agoUpdate to SQLite 3.14.0
Christoph M. Becker [Wed, 10 Aug 2016 16:09:38 +0000 (18:09 +0200)]
Update to SQLite 3.14.0

8 years agoFixed typo
Yasuo Ohgaki [Wed, 10 Aug 2016 06:20:45 +0000 (15:20 +0900)]
Fixed typo

8 years agoUpdate NEWS and UPGRADING
Yasuo Ohgaki [Wed, 10 Aug 2016 05:53:27 +0000 (14:53 +0900)]
Update NEWS and UPGRADING

8 years agoMerge pull request #1098
Yasuo Ohgaki [Wed, 10 Aug 2016 05:39:23 +0000 (14:39 +0900)]
Merge pull request #1098
Fix bug #69086 enhancement for mb_convert_encoding

8 years agopull-request/1099
Yasuo Ohgaki [Wed, 10 Aug 2016 05:09:48 +0000 (14:09 +0900)]
pull-request/1099
Request #65081 - implemeting mb_scrub

8 years agopull-request/1100
Yasuo Ohgaki [Wed, 10 Aug 2016 00:47:27 +0000 (09:47 +0900)]
pull-request/1100
Request #65081 mb_chr() and mb_ord()

Added test cases and little optimization.

8 years agoMerge branch 'master' of git.php.net:php-src
Yasuo Ohgaki [Wed, 10 Aug 2016 00:39:17 +0000 (09:39 +0900)]
Merge branch 'master' of git.php.net:php-src

* 'master' of git.php.net:php-src: (1423 commits)
  Add NEWS
  Fix ASSERT logic
  Bugfix 72791: fix memory leak in PDO persistent connections
  Don't copy mime types in CLI server
  Class constant visibility modifiers are now supported
  Remove obsolete Id tags
  Bump version in OCI8 test
  Update NEWS
  Fixed bug #72788 (Invalid memory access when using persistent PDO connection)
  Remove typo'd commit
  Fix bug 72788: Invalid memory access when database_object_handle is undefined. Also fix memory leak in dbh_free when using persistent PDO connections.
  Swap min/max if min > max
  Allow min > max for mt_rand(). Bug #72784
  Replace dead branch with ZEND_ASSERT()
  Fix array_column() packed hash initialization
  Add test for bug #69107: finfo no longer detects PHP files
  check malloc result
  Implement #38992: invoke() and invokeArgs() static method calls should match
  Fix bug #55451
  Fix stream_socket_enable_crypto() test
  ...

8 years agoUse checked add/sub intrinsics instead of asm for ++ and --
Andrea Faulds [Tue, 9 Aug 2016 23:28:13 +0000 (00:28 +0100)]
Use checked add/sub intrinsics instead of asm for ++ and --

8 years agoUse checked arithmetic intrinsics instead of asm, when possible
Andrea Faulds [Tue, 9 Aug 2016 23:15:13 +0000 (00:15 +0100)]
Use checked arithmetic intrinsics instead of asm, when possible

8 years agoAdd NEWS
Keyur [Tue, 9 Aug 2016 17:29:36 +0000 (17:29 +0000)]
Add NEWS

8 years agoFix ASSERT logic
Keyur [Tue, 9 Aug 2016 14:41:20 +0000 (14:41 +0000)]
Fix ASSERT logic

8 years agoBugfix 72791: fix memory leak in PDO persistent connections
Keyur [Tue, 9 Aug 2016 14:01:25 +0000 (14:01 +0000)]
Bugfix 72791: fix memory leak in PDO persistent connections

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Keyur [Tue, 9 Aug 2016 17:30:26 +0000 (17:30 +0000)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Add NEWS
  Fix ASSERT logic
  Bugfix 72791: fix memory leak in PDO persistent connections

8 years agoAdd NEWS
Keyur [Tue, 9 Aug 2016 17:29:36 +0000 (17:29 +0000)]
Add NEWS

8 years agoMerge branch 'pull-request/2067' into PHP-7.0
Keyur [Tue, 9 Aug 2016 17:27:52 +0000 (17:27 +0000)]
Merge branch 'pull-request/2067' into PHP-7.0

8 years agoFix ASSERT logic
Keyur [Tue, 9 Aug 2016 14:41:20 +0000 (14:41 +0000)]
Fix ASSERT logic

8 years agoBugfix 72791: fix memory leak in PDO persistent connections
Keyur [Tue, 9 Aug 2016 14:01:25 +0000 (14:01 +0000)]
Bugfix 72791: fix memory leak in PDO persistent connections

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Tue, 9 Aug 2016 13:35:22 +0000 (15:35 +0200)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Tue, 9 Aug 2016 13:35:04 +0000 (15:35 +0200)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoDon't copy mime types in CLI server
Nikita Popov [Tue, 9 Aug 2016 13:33:15 +0000 (15:33 +0200)]
Don't copy mime types in CLI server

This is both unnecessary and causes leaks in valgrind.

8 years agoMerge branch 'PHP-7.1'
Christoph M. Becker [Tue, 9 Aug 2016 09:55:30 +0000 (11:55 +0200)]
Merge branch 'PHP-7.1'

8 years agoClass constant visibility modifiers are now supported
Christoph M. Becker [Tue, 9 Aug 2016 09:54:43 +0000 (11:54 +0200)]
Class constant visibility modifiers are now supported

8 years agoMerge branch 'PHP-7.1'
Christopher Jones [Tue, 9 Aug 2016 06:14:53 +0000 (16:14 +1000)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Christopher Jones [Tue, 9 Aug 2016 06:13:27 +0000 (16:13 +1000)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoRemove obsolete Id tags
Christopher Jones [Tue, 9 Aug 2016 06:12:58 +0000 (16:12 +1000)]
Remove obsolete Id tags

8 years agoMerge branch 'PHP-7.1'
Christopher Jones [Tue, 9 Aug 2016 06:01:46 +0000 (16:01 +1000)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Christopher Jones [Tue, 9 Aug 2016 06:00:44 +0000 (16:00 +1000)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoBump version in OCI8 test
Christopher Jones [Tue, 9 Aug 2016 05:59:59 +0000 (15:59 +1000)]
Bump version in OCI8 test

8 years agoMerge branch 'PHP-7.1'
Xinchen Hui [Tue, 9 Aug 2016 03:33:38 +0000 (11:33 +0800)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  Update NEWS
  Fixed bug #72788 (Invalid memory access when using persistent PDO connection)
  Remove typo'd commit
  Fix bug 72788: Invalid memory access when database_object_handle is undefined. Also fix memory leak in dbh_free when using persistent PDO connections.

8 years agoUpdate NEWS
Xinchen Hui [Tue, 9 Aug 2016 03:32:55 +0000 (11:32 +0800)]
Update NEWS

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Xinchen Hui [Tue, 9 Aug 2016 03:32:34 +0000 (11:32 +0800)]
Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Fixed bug #72788 (Invalid memory access when using persistent PDO connection)
  Remove typo'd commit
  Fix bug 72788: Invalid memory access when database_object_handle is undefined. Also fix memory leak in dbh_free when using persistent PDO connections.

8 years agoFixed bug #72788 (Invalid memory access when using persistent PDO connection)
Xinchen Hui [Tue, 9 Aug 2016 03:32:16 +0000 (11:32 +0800)]
Fixed bug #72788 (Invalid memory access when using persistent PDO connection)

8 years agoMerge branch 'bug72788' of https://github.com/keyurdg/php-src into PHP-7.0
Xinchen Hui [Tue, 9 Aug 2016 03:25:32 +0000 (11:25 +0800)]
Merge branch 'bug72788' of https://github.com/keyurdg/php-src into PHP-7.0

* 'bug72788' of https://github.com/keyurdg/php-src:
  Remove typo'd commit
  Fix bug 72788: Invalid memory access when database_object_handle is undefined. Also fix memory leak in dbh_free when using persistent PDO connections.

8 years agoRemove typo'd commit
Keyur [Tue, 9 Aug 2016 01:36:15 +0000 (01:36 +0000)]
Remove typo'd commit

8 years agoFix bug 72788: Invalid memory access when database_object_handle
Keyur [Mon, 8 Aug 2016 23:34:00 +0000 (23:34 +0000)]
Fix bug 72788: Invalid memory access when database_object_handle
is undefined. Also fix memory leak in dbh_free when using persistent
PDO connections.

8 years agoMerge branch 'PHP-7.1'
Leigh [Mon, 8 Aug 2016 21:33:18 +0000 (22:33 +0100)]
Merge branch 'PHP-7.1'

8 years agoSwap min/max if min > max
Leigh [Mon, 8 Aug 2016 21:31:59 +0000 (22:31 +0100)]
Swap min/max if min > max

8 years agoMerge branch 'PHP-7.1'
Leigh [Mon, 8 Aug 2016 21:18:08 +0000 (22:18 +0100)]
Merge branch 'PHP-7.1'

8 years agoAllow min > max for mt_rand(). Bug #72784
Leigh [Mon, 8 Aug 2016 21:16:27 +0000 (22:16 +0100)]
Allow min > max for mt_rand(). Bug #72784

8 years agoMerge branch 'PHP-7.1'
Andrea Faulds [Mon, 8 Aug 2016 20:01:28 +0000 (21:01 +0100)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Andrea Faulds [Mon, 8 Aug 2016 20:00:49 +0000 (21:00 +0100)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoReplace dead branch with ZEND_ASSERT()
Andrea Faulds [Mon, 8 Aug 2016 19:56:11 +0000 (20:56 +0100)]
Replace dead branch with ZEND_ASSERT()

8 years agoMerge branch 'PHP-7.1'
Christoph M. Becker [Mon, 8 Aug 2016 16:57:14 +0000 (18:57 +0200)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Christoph M. Becker [Mon, 8 Aug 2016 16:51:34 +0000 (18:51 +0200)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Mon, 8 Aug 2016 16:48:32 +0000 (18:48 +0200)]
Merge branch 'PHP-7.1'

8 years agoFix array_column() packed hash initialization
Nikita Popov [Mon, 8 Aug 2016 16:46:54 +0000 (18:46 +0200)]
Fix array_column() packed hash initialization

FILL assumes enough space is alredy allocated -- do that. Note that
the used size is an upper bound, albeit a likely one.

8 years agoMerge branch 'PHP-5.6' into PHP-7.0
Christoph M. Becker [Mon, 8 Aug 2016 16:45:27 +0000 (18:45 +0200)]
Merge branch 'PHP-5.6' into PHP-7.0

8 years agoAdd test for bug #69107: finfo no longer detects PHP files
Christoph M. Becker [Mon, 8 Aug 2016 16:43:33 +0000 (18:43 +0200)]
Add test for bug #69107: finfo no longer detects PHP files

8 years agoMerge branch 'PHP-7.1'
Anatol Belski [Mon, 8 Aug 2016 10:18:57 +0000 (12:18 +0200)]
Merge branch 'PHP-7.1'

* PHP-7.1:
  check malloc result

8 years agocheck malloc result
Anatol Belski [Sat, 6 Aug 2016 20:33:29 +0000 (22:33 +0200)]
check malloc result

8 years agoMerge branch 'PHP-7.1'
Christoph M. Becker [Sun, 7 Aug 2016 23:47:05 +0000 (01:47 +0200)]
Merge branch 'PHP-7.1'

8 years agoImplement #38992: invoke() and invokeArgs() static method calls should match
Christoph M. Becker [Sun, 7 Aug 2016 23:27:21 +0000 (01:27 +0200)]
Implement #38992: invoke() and invokeArgs() static method calls should match

We don't want ReflectionMethod::invoke() to simply ignore its first argument,
if the method to invoke is a static method. Instead we match its ZPP with
that of ReflectionMethod::invokeArgs(). Furthermore, we apply the DRY
principle by factoring out the code to a common helper function to prevent
inadvertent future divergence of the implementations of both methods.

As can be seen from the necessity to adapt some test cases, this causes a
BC break for some pathological cases. Therefore we apply this patch to PHP
7.1 only, which is still in beta phase.

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Sun, 7 Aug 2016 16:50:34 +0000 (18:50 +0200)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Sun, 7 Aug 2016 16:50:14 +0000 (18:50 +0200)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFix bug #55451
Lauri Kenttä [Wed, 3 Aug 2016 08:29:12 +0000 (11:29 +0300)]
Fix bug #55451

Make substr_compare ignore the length if it's NULL. This allows to
use the last parameter (case_insensitivity) with the default length.

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Sun, 7 Aug 2016 16:38:49 +0000 (18:38 +0200)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Nikita Popov [Sun, 7 Aug 2016 16:38:43 +0000 (18:38 +0200)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoMerge branch 'PHP-5.6' into PHP-7.0
Nikita Popov [Sun, 7 Aug 2016 16:38:28 +0000 (18:38 +0200)]
Merge branch 'PHP-5.6' into PHP-7.0

8 years agoFix stream_socket_enable_crypto() test
Nikita Popov [Sun, 7 Aug 2016 16:36:32 +0000 (18:36 +0200)]
Fix stream_socket_enable_crypto() test

The whole test doesn't make any sense at all, but this only fixes
the additional warnings you get when linked against openssl w/o
SSL3.

8 years agoUpdate php_version.h
Nikita Popov [Sun, 7 Aug 2016 15:52:37 +0000 (17:52 +0200)]
Update php_version.h

8 years agoMerge branch 'PHP-7.1'
Nikita Popov [Sun, 7 Aug 2016 15:47:17 +0000 (17:47 +0200)]
Merge branch 'PHP-7.1'

8 years agoFix PUTC warning
Nikita Popov [Sun, 7 Aug 2016 14:44:31 +0000 (16:44 +0200)]
Fix PUTC warning

Change the macro to not provide a useless return value using a
comma expression, which generates warnings.

8 years agoAvoid use of scratch space in HTTP fopen wrapper
Nikita Popov [Thu, 4 Aug 2016 13:12:33 +0000 (15:12 +0200)]
Avoid use of scratch space in HTTP fopen wrapper

Instead directly write into req_buf smart_str.

8 years agoNote about the recent change to the WSA version check on Windows
Kalle Sommer Nielsen [Sun, 7 Aug 2016 03:40:56 +0000 (05:40 +0200)]
Note about the recent change to the WSA version check on Windows

8 years agoFixed bug #71534 (Type confusion in exif_read_data() leading to heap overflow in...
Kalle Sommer Nielsen [Sun, 7 Aug 2016 03:35:46 +0000 (05:35 +0200)]
Fixed bug #71534 (Type confusion in exif_read_data() leading to heap  overflow in debug mode)

Unlike the original patch, this does not return an unknown format in case an unsigned compatible type cannot be found (cases for SINGLE and DOUBLE removed), as these seems rare cases according to the inline comments.

Note, the test does not test if PHP is in debug mode, although the report originally states it only occurs there only.

The fix is based on a patch by hlt99 at blinkenshell dot org

8 years agoAdded some extended info about ext/exif to phpinfo()
Kalle Sommer Nielsen [Sun, 7 Aug 2016 03:11:40 +0000 (05:11 +0200)]
Added some extended info about ext/exif to phpinfo()

8 years agoRemove void comment
Kalle Sommer Nielsen [Sun, 7 Aug 2016 02:58:29 +0000 (04:58 +0200)]
Remove void comment

8 years agoFix tests, although I was not able to reproduce these failures on an x86 build/Window...
Kalle Sommer Nielsen [Sun, 7 Aug 2016 02:22:27 +0000 (04:22 +0200)]
Fix tests, although I was not able to reproduce these failures on an x86 build/Windows, this should hopefully make travis happy

8 years agoMerge branch 'PHP-7.1'
Christopher Jones [Sun, 7 Aug 2016 00:25:41 +0000 (10:25 +1000)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Christopher Jones [Sun, 7 Aug 2016 00:25:16 +0000 (10:25 +1000)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoRemove old $Id$ tags
Christopher Jones [Sun, 7 Aug 2016 00:24:56 +0000 (10:24 +1000)]
Remove old $Id$ tags

8 years agoMerge branch 'PHP-7.1'
Christopher Jones [Sun, 7 Aug 2016 00:21:46 +0000 (10:21 +1000)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Christopher Jones [Sun, 7 Aug 2016 00:21:14 +0000 (10:21 +1000)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoSync with 7.1 branch changes from Nikita & Dimitri to keep OCI8 code identical
Christopher Jones [Sun, 7 Aug 2016 00:17:06 +0000 (10:17 +1000)]
Sync with 7.1 branch changes from Nikita & Dimitri to keep OCI8 code identical

8 years agoNews for 7.1
Christopher Jones [Sun, 7 Aug 2016 00:06:11 +0000 (10:06 +1000)]
News for 7.1

8 years agoMerge branch 'PHP-7.1'
Christopher Jones [Sun, 7 Aug 2016 00:02:53 +0000 (10:02 +1000)]
Merge branch 'PHP-7.1'

8 years agoMerge branch 'PHP-7.0' into PHP-7.1
Christopher Jones [Sun, 7 Aug 2016 00:02:14 +0000 (10:02 +1000)]
Merge branch 'PHP-7.0' into PHP-7.1

8 years agoFix bug #72524 (Binding null values triggers ORA-24816 error)
Christopher Jones [Thu, 4 Aug 2016 02:45:32 +0000 (12:45 +1000)]
Fix bug #72524 (Binding null values triggers ORA-24816 error)