From b31a24e200e8710e56cced78eb1a0b44ad7bcaff Mon Sep 17 00:00:00 2001 From: =?utf8?q?L=C3=A9o=20Colombaro?= Date: Wed, 17 Apr 2013 14:42:34 +0300 Subject: [PATCH] Fix twice Fix #1346 --- includes/functions-html.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/functions-html.php b/includes/functions-html.php index 8587b6e..34b79b7 100644 --- a/includes/functions-html.php +++ b/includes/functions-html.php @@ -699,7 +699,7 @@ function yourls_html_menu() { // Build menu links if( defined( 'YOURLS_USER' ) ) { - $logout_link = yourls_apply_filter( 'logout_link', sprintf( yourls__('Hello %s'), YOURLS_USER ) . ' (' . yourls__( 'Logout' ) . ')' ); + $logout_link = yourls_apply_filter( 'logout_link', sprintf( yourls__('Hello %s'), YOURLS_USER ) . ' (' . yourls__( 'Logout' ) . ')' ); } else { $logout_link = yourls_apply_filter( 'logout_link', '' ); } @@ -849,4 +849,4 @@ function yourls_l10n_calendar_strings() { // Dummy returns, to initialize l10n strings used in the calendar yourls__( 'Today' ); yourls__( 'Close' ); -} \ No newline at end of file +} -- 2.45.0