Changeset 50560
- Timestamp:
- 03/21/2021 01:03:14 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/image-edit.php
r49927 r50560 118 118 ?> 119 119 </p> 120 <?php endif ?>120 <?php endif; ?> 121 121 <div class="imgedit-submit"> 122 122 -
trunk/src/wp-admin/install.php
r48172 r50560 427 427 <th><?php _e( 'Password' ); ?></th> 428 428 <td> 429 <?php 430 if ( ! empty( $result['password'] ) && empty( $admin_password_check ) ) : 431 ?> 432 <code><?php echo esc_html( $result['password'] ); ?></code><br /> 433 <?php endif ?> 429 <?php if ( ! empty( $result['password'] ) && empty( $admin_password_check ) ) : ?> 430 <code><?php echo esc_html( $result['password'] ); ?></code><br /> 431 <?php endif; ?> 434 432 <p><?php echo $result['password_message']; ?></p> 435 433 </td> -
trunk/src/wp-admin/options.php
r50373 r50560 393 393 <?php else : ?> 394 394 <input class="regular-text <?php echo $class; ?>" type="text" name="<?php echo $name; ?>" id="<?php echo $name; ?>" value="<?php echo esc_attr( $value ); ?>"<?php disabled( $disabled, true ); ?> /> 395 <?php endif ?></td>395 <?php endif; ?></td> 396 396 </tr> 397 397 <?php endforeach; ?> -
trunk/src/wp-includes/media.php
r50552 r50560 2794 2794 <?php if ( 'audio' === $atts['type'] ) : ?> 2795 2795 <div class="wp-playlist-current-item"></div> 2796 <?php endif ?>2796 <?php endif; ?> 2797 2797 <<?php echo $safe_type; ?> controls="controls" preload="none" width="<?php echo (int) $theme_width; ?>" 2798 2798 <?php
Note: See TracChangeset
for help on using the changeset viewer.