From d130158fa5be3901b46731125849ebb5914e7ad1 Mon Sep 17 00:00:00 2001 From: nacin Date: Thu, 12 May 2011 01:45:42 +0000 Subject: [PATCH] Make the footer text code a bit easier to read. see #17383, #17384. git-svn-id: http://svn.automattic.com/wordpress/trunk@17879 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/admin-footer.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/wp-admin/admin-footer.php b/wp-admin/admin-footer.php index e1325fce2..b5207c59c 100644 --- a/wp-admin/admin-footer.php +++ b/wp-admin/admin-footer.php @@ -19,7 +19,16 @@ if ( !defined('ABSPATH') ) +$footer_text = array( + '' . __( 'Thank you for creating with WordPress.' ) . '', + __( 'Documentation' ), + sprintf( __( 'Rights' ), admin_url( 'rights.php' ) ), + __('Feedback'), + sprintf(__('Credits'), admin_url('credits.php') ), +); +echo apply_filters( 'admin_footer_text', implode( ' • ', $footer_text ) ); +unset( $footer_text ); +?>