Changeset 24126
- Timestamp:
- 04/29/2013 01:26:31 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-walker.php
r23346 r24126 116 116 * @return null Null on failure with no changes to parameters. 117 117 */ 118 function display_element( $element, &$children_elements, $max_depth, $depth =0, $args, &$output ) {118 function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) { 119 119 120 120 if ( !$element ) -
trunk/wp-includes/comment-template.php
r23932 r24126 1296 1296 * 1297 1297 */ 1298 function display_element( $element, &$children_elements, $max_depth, $depth =0, $args, &$output ) {1298 function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) { 1299 1299 1300 1300 if ( !$element ) -
trunk/wp-includes/deprecated.php
r23554 r24126 795 795 * @see get_author_posts_url() 796 796 * 797 * @param bool $echo Optional.798 * @param int $author_id Required.797 * @param bool $echo 798 * @param int $author_id 799 799 * @param string $author_nicename Optional. 800 800 * @return string|null 801 801 */ 802 function get_author_link($echo = false, $author_id, $author_nicename = '') {802 function get_author_link($echo, $author_id, $author_nicename = '') { 803 803 _deprecated_function( __FUNCTION__, '2.1', 'get_author_posts_url()' ); 804 804 -
trunk/wp-includes/post.php
r24015 r24126 4787 4787 * @param object $post Object type containing the post information 4788 4788 */ 4789 function _future_post_hook( $deprecated = '', $post ) {4789 function _future_post_hook( $deprecated, $post ) { 4790 4790 wp_clear_scheduled_hook( 'publish_future_post', array( $post->ID ) ); 4791 4791 wp_schedule_single_event( strtotime( get_gmt_from_date( $post->post_date ) . ' GMT') , 'publish_future_post', array( $post->ID ) ); -
trunk/wp-includes/widgets.php
r23554 r24126 74 74 * PHP4 constructor 75 75 */ 76 function WP_Widget( $id_base = false, $name, $widget_options = array(), $control_options = array() ) {76 function WP_Widget( $id_base, $name, $widget_options = array(), $control_options = array() ) { 77 77 WP_Widget::__construct( $id_base, $name, $widget_options, $control_options ); 78 78 } … … 91 91 * - height: currently not used but may be needed in the future 92 92 */ 93 function __construct( $id_base = false, $name, $widget_options = array(), $control_options = array() ) {93 function __construct( $id_base, $name, $widget_options = array(), $control_options = array() ) { 94 94 $this->id_base = empty($id_base) ? preg_replace( '/(wp_)?widget_/', '', strtolower(get_class($this)) ) : strtolower($id_base); 95 95 $this->name = $name; -
trunk/wp-signup.php
r24058 r24126 491 491 * @param string $meta Any additional meta from the 'add_signup_meta' filter in validate_blog_signup() 492 492 */ 493 function confirm_blog_signup( $domain, $path, $blog_title, $user_name = '', $user_email = '', $meta) {493 function confirm_blog_signup( $domain, $path, $blog_title, $user_name = '', $user_email = '', $meta = array() ) { 494 494 ?> 495 495 <h2><?php printf( __( 'Congratulations! Your new site, %s, is almost ready.' ), "<a href='http://{$domain}{$path}'>{$blog_title}</a>" ) ?></h2>
Note: See TracChangeset
for help on using the changeset viewer.