]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/link-manager.php
Wordpress 4.5.3-scripts
[autoinstalls/wordpress.git] / wp-admin / link-manager.php
index 92194f039213c40289d86b1752b5937dff94da78..4dc3015179ac788d8a8589061829cadad30eda6f 100644 (file)
@@ -7,7 +7,7 @@
  */
 
 /** Load WordPress Administration Bootstrap */
  */
 
 /** Load WordPress Administration Bootstrap */
-require_once ('admin.php');
+require_once( dirname( __FILE__ ) . '/admin.php' );
 if ( ! current_user_can( 'manage_links' ) )
        wp_die( __( 'You do not have sufficient permissions to edit the links for this site.' ) );
 
 if ( ! current_user_can( 'manage_links' ) )
        wp_die( __( 'You do not have sufficient permissions to edit the links for this site.' ) );
 
@@ -31,7 +31,7 @@ if ( $doaction && isset( $_REQUEST['linkcheck'] ) ) {
                exit;
        }
 } elseif ( ! empty( $_GET['_wp_http_referer'] ) ) {
                exit;
        }
 } elseif ( ! empty( $_GET['_wp_http_referer'] ) ) {
-        wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), stripslashes( $_SERVER['REQUEST_URI'] ) ) );
+        wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) );
         exit;
 }
 
         exit;
 }
 
@@ -57,11 +57,15 @@ get_current_screen()->add_help_tab( array(
 
 get_current_screen()->set_help_sidebar(
        '<p><strong>' . __('For more information:') . '</strong></p>' .
 
 get_current_screen()->set_help_sidebar(
        '<p><strong>' . __('For more information:') . '</strong></p>' .
-       '<p>' . __('<a href="http://codex.wordpress.org/Links_Screen" target="_blank">Documentation on Managing Links</a>') . '</p>' .
-       '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
+       '<p>' . __('<a href="https://codex.wordpress.org/Links_Screen" target="_blank">Documentation on Managing Links</a>') . '</p>' .
+       '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 );
 
 );
 
-include_once ('./admin-header.php');
+get_current_screen()->set_screen_reader_content( array(
+       'heading_list' => __( 'Links list' ),
+) );
+
+include_once( ABSPATH . 'wp-admin/admin-header.php' );
 
 if ( ! current_user_can('manage_links') )
        wp_die(__("You do not have sufficient permissions to edit the links for this site."));
 
 if ( ! current_user_can('manage_links') )
        wp_die(__("You do not have sufficient permissions to edit the links for this site."));
@@ -69,15 +73,17 @@ if ( ! current_user_can('manage_links') )
 ?>
 
 <div class="wrap nosubsub">
 ?>
 
 <div class="wrap nosubsub">
-<?php screen_icon(); ?>
-<h2><?php echo esc_html( $title ); ?> <a href="link-add.php" class="add-new-h2"><?php echo esc_html_x('Add New', 'link'); ?></a> <?php
-if ( !empty($_REQUEST['s']) )
-       printf( '<span class="subtitle">' . __('Search results for &#8220;%s&#8221;') . '</span>', esc_html( stripslashes($_REQUEST['s']) ) ); ?>
-</h2>
+<h1><?php echo esc_html( $title ); ?> <a href="link-add.php" class="page-title-action"><?php echo esc_html_x('Add New', 'link'); ?></a> <?php
+if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) {
+       /* translators: %s: search keywords */
+       printf( '<span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', esc_html( wp_unslash( $_REQUEST['s'] ) ) );
+}
+?>
+</h1>
 
 <?php
 if ( isset($_REQUEST['deleted']) ) {
 
 <?php
 if ( isset($_REQUEST['deleted']) ) {
-       echo '<div id="message" class="updated"><p>';
+       echo '<div id="message" class="updated notice is-dismissible"><p>';
        $deleted = (int) $_REQUEST['deleted'];
        printf(_n('%s link deleted.', '%s links deleted', $deleted), $deleted);
        echo '</p></div>';
        $deleted = (int) $_REQUEST['deleted'];
        printf(_n('%s link deleted.', '%s links deleted', $deleted), $deleted);
        echo '</p></div>';
@@ -85,7 +91,7 @@ if ( isset($_REQUEST['deleted']) ) {
 }
 ?>
 
 }
 ?>
 
-<form id="posts-filter" action="" method="get">
+<form id="posts-filter" method="get">
 
 <?php $wp_list_table->search_box( __( 'Search Links' ), 'link' ); ?>
 
 
 <?php $wp_list_table->search_box( __( 'Search Links' ), 'link' ); ?>
 
@@ -97,4 +103,4 @@ if ( isset($_REQUEST['deleted']) ) {
 </div>
 
 <?php
 </div>
 
 <?php
-include('./admin-footer.php');
+include( ABSPATH . 'wp-admin/admin-footer.php' );