Changeset 31446
- Timestamp:
- 02/13/2015 06:50:49 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r31443 r31446 412 412 * @param bool $table_row 413 413 */ 414 function wp_comment_reply( $position = '1', $checkbox = false, $mode = 'single', $table_row = true) {414 function wp_comment_reply( $position = 1, $checkbox = false, $mode = 'single', $table_row = true ) { 415 415 global $wp_list_table; 416 416 /** … … 844 844 * @since 2.1.0 845 845 * 846 * @param string $selected slug for the role that should be already selected847 */ 848 function wp_dropdown_roles( $selected = false) {846 * @param string $selected Slug for the role that should be already selected. 847 */ 848 function wp_dropdown_roles( $selected = '' ) { 849 849 $p = ''; 850 850 $r = ''; … … 1815 1815 * string such as 'tabindex="1"', though the array format is typically cleaner. 1816 1816 */ 1817 function get_submit_button( $text = null, $type = 'primary large', $name = 'submit', $wrap = true, $other_attributes = null) {1817 function get_submit_button( $text = '', $type = 'primary large', $name = 'submit', $wrap = true, $other_attributes = '' ) { 1818 1818 if ( ! is_array( $type ) ) 1819 1819 $type = explode( ' ', $type );
Note: See TracChangeset
for help on using the changeset viewer.