Changeset 27029 for trunk/src/wp-admin/includes/media.php
- Timestamp:
- 01/24/2014 07:05:15 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/media.php
r26908 r27029 1378 1378 <table class='slidetoggle describe $class'> 1379 1379 <thead class='media-item-info' id='media-head-$post->ID'> 1380 <tr valign='top'>1380 <tr> 1381 1381 <td class='A1B1' id='thumbnail-head-$post->ID'> 1382 1382 <p><a href='$attachment_url' target='_blank'><img class='thumbnail' src='$thumb_url' alt='' /></a></p> … … 1463 1463 $class .= $field['required'] ? ' form-required' : ''; 1464 1464 1465 $item .= "\t\t<tr class='$class'>\n\t\t\t<th valign='top'scope='row' class='label'><label for='$name'><span class='alignleft'>{$field['label']}</span>$required<br class='clear' /></label></th>\n\t\t\t<td class='field'>";1465 $item .= "\t\t<tr class='$class'>\n\t\t\t<th scope='row' class='label'><label for='$name'><span class='alignleft'>{$field['label']}</span>$required<br class='clear' /></label></th>\n\t\t\t<td class='field'>"; 1466 1466 if ( !empty( $field[ $field['input'] ] ) ) 1467 1467 $item .= $field[ $field['input'] ]; … … 1610 1610 1611 1611 $item .= "\t\t<tr class='$class'>"; 1612 $item .= "\t\t\t<th valign='top'scope='row' class='label'><label for='$id_attr'><span class='alignleft'>{$field['label']}</span>$required<br class='clear' /></label>";1612 $item .= "\t\t\t<th scope='row' class='label'><label for='$id_attr'><span class='alignleft'>{$field['label']}</span>$required<br class='clear' /></label>"; 1613 1613 $item .= "</th>\n\t\t\t<td class='field'>"; 1614 1614 … … 2430 2430 $caption = ' 2431 2431 <tr class="image-only"> 2432 <th valign="top"scope="row" class="label">2432 <th scope="row" class="label"> 2433 2433 <label for="caption"><span class="alignleft">' . __('Image Caption') . '</span></label> 2434 2434 </th> … … 2455 2455 <table class="describe ' . $table_class . '"><tbody> 2456 2456 <tr> 2457 <th valign="top"scope="row" class="label" style="width:130px;">2457 <th scope="row" class="label" style="width:130px;"> 2458 2458 <label for="src"><span class="alignleft">' . __('URL') . '</span></label> 2459 2459 <span class="alignright"><abbr id="status_img" title="required" class="required">*</abbr></span> … … 2463 2463 2464 2464 <tr> 2465 <th valign="top"scope="row" class="label">2465 <th scope="row" class="label"> 2466 2466 <label for="title"><span class="alignleft">' . __('Title') . '</span></label> 2467 2467 <span class="alignright"><abbr title="required" class="required">*</abbr></span> … … 2473 2473 2474 2474 <tr class="image-only"> 2475 <th valign="top"scope="row" class="label">2475 <th scope="row" class="label"> 2476 2476 <label for="alt"><span class="alignleft">' . __('Alternative Text') . '</span></label> 2477 2477 </th> … … 2481 2481 ' . $caption . ' 2482 2482 <tr class="align image-only"> 2483 <th valign="top"scope="row" class="label"><p><label for="align">' . __('Alignment') . '</label></p></th>2483 <th scope="row" class="label"><p><label for="align">' . __('Alignment') . '</label></p></th> 2484 2484 <td class="field"> 2485 2485 <input name="align" id="align-none" value="none" onclick="addExtImage.align=\'align\'+this.value" type="radio"' . ($default_align == 'none' ? ' checked="checked"' : '').' /> … … 2495 2495 2496 2496 <tr class="image-only"> 2497 <th valign="top"scope="row" class="label">2497 <th scope="row" class="label"> 2498 2498 <label for="url"><span class="alignleft">' . __('Link Image To:') . '</span></label> 2499 2499 </th>
Note: See TracChangeset
for help on using the changeset viewer.