Ticket #17515: template.php.diff
File template.php.diff, 647 bytes (added by , 14 years ago) |
---|
-
wp-admin/includes/template.php
961 961 echo '<div class="handlediv" title="' . esc_attr__('Click to toggle') . '"><br /></div>'; 962 962 echo "<h3 class='hndle'><span>{$box['title']}</span></h3>\n"; 963 963 echo '<div class="inside">' . "\n"; 964 call_user_func ($box['callback'], $object, $box);964 call_user_func_array( $box['callback'], array_merge( array( $object ), (array) $box['args'] ) ); 965 965 echo "</div>\n"; 966 966 echo "</div>\n"; 967 967 }