Ticket #21630: template.patch
| File template.patch, 637 bytes (added by , 13 years ago) |
|---|
-
template.php
1116 1116 foreach ( (array) $wp_settings_sections[$page] as $section ) { 1117 1117 if ( $section['title'] ) 1118 1118 echo "<h3>{$section['title']}</h3>\n"; 1119 call_user_func($section['callback'], $section); 1119 1120 if ( $section['callback'] ) 1121 call_user_func($section['callback'], $section); 1122 1120 1123 if ( !isset($wp_settings_fields) || !isset($wp_settings_fields[$page]) || !isset($wp_settings_fields[$page][$section['id']]) ) 1121 1124 continue; 1122 1125 echo '<table class="form-table">';