Revert parameter changes in [21394] as these are unnecessary.
Our plugin API always passes the requested number arguments to a callback, even if previous callbacks asked for less arguments than later callbacks. see #21264. git-svn-id: http://core.svn.wordpress.org/trunk@21395 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8e8c62cc9c
commit
c52291165e
|
@ -143,7 +143,7 @@ add_action( 'wp_enqueue_scripts', 'twentytwelve_scripts_styles' );
|
|||
* @param string $sep Optional separator.
|
||||
* @return string Filtered title.
|
||||
*/
|
||||
function twentytwelve_wp_title( $title = '', $sep = '' ) {
|
||||
function twentytwelve_wp_title( $title, $sep ) {
|
||||
global $paged, $page;
|
||||
|
||||
if ( is_feed() )
|
||||
|
|
Loading…
Reference in New Issue