Docs: Add missing parameter and return documentation to the DocBlock for the deprecated `debug_fopen()`.

Fixes #32246.

Built from https://develop.svn.wordpress.org/trunk@36755


git-svn-id: http://core.svn.wordpress.org/trunk@36722 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2016-02-28 18:20:26 +00:00
parent d48cd1cb28
commit b878338b1d
2 changed files with 5 additions and 1 deletions

View File

@ -2819,6 +2819,10 @@ function is_blog_user( $blog_id = 0 ) {
* @see error_log()
*
* @link http://www.php.net/manual/en/function.error-log.php
*
* @param string $filename File name.
* @param string $mode Type of access you required to the stream.
* @return false Always false.
*/
function debug_fopen( $filename, $mode ) {
_deprecated_function( __FUNCTION__, 'error_log()' );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-beta1-36754';
$wp_version = '4.5-beta1-36755';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.