Make WordPress Core

Changeset 55848

Timestamp:
05/22/2023 08:02:35 PM (15 months ago)
Author:
audrasjb
Message:

Help/About: Remove unwanted space in a link located on about.php.

This fixes a small interface glitch in the Go to Updates link located on
the the About screen.

Props NekoJonez, mukesh27, sumitbagthariya16, ahsannayem.
Fixes #58373.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/about.php

    r55716 r55848  
    281281        <div class="return-to-dashboard">
    282282            <?php if ( current_user_can( 'update_core' ) && isset( $_GET['updated'] ) ) : ?>
    283                 <a href="<?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?>">
    284                     <?php is_multisite() ? _e( 'Go to Updates' ) : _e( 'Go to Dashboard &rarr; Updates' ); ?>
    285                 </a> |
     283                <a href="<?php echo esc_url( self_admin_url( 'update-core.php' ) ); ?>"><?php is_multisite() ? _e( 'Go to Updates' ) : _e( 'Go to Dashboard &rarr; Updates' ); ?></a> |
    286284            <?php endif; ?>
    287285            <a href="<?php echo esc_url( self_admin_url() ); ?>"><?php is_blog_admin() ? _e( 'Go to Dashboard &rarr; Home' ) : _e( 'Go to Dashboard' ); ?></a>
Note: See TracChangeset for help on using the changeset viewer.