From 70b98171749737012914df76cb21a5888b04d6e6 Mon Sep 17 00:00:00 2001 From: philippe_mingo Date: Sat, 24 Aug 2002 05:38:31 +0000 Subject: [PATCH] Typo. _ was missing. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3446 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/read_body.php b/src/read_body.php index 97ae4574..a19542bc 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -522,21 +522,20 @@ function formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color) { $urlMailbox = urlencode($mailbox); $url = $base_uri.'src/view_header.php?'.$QUERY_STRING; - $s = "\n"; - $s .= '' . _("Options") . ":  \n"; - $s .= ''; - $s .= ''.("View Full Header").''; + $s = "\n" . + '' . _("Options") . ":  \n" . + '' . + ''._("View Full Header").''; /* Output the printer friendly link if we are in subtle mode. */ - $s .= ' | '; - $s .= printer_friendly_link($mailbox, $passed_id, $passed_ent_id, $color); + $s .= ' | ' . + printer_friendly_link($mailbox, $passed_id, $passed_ent_id, $color); echo $s; do_hook("read_body_header_right"); - $s = "\n"; - $s .= "\n"; + $s = "\n" . + "\n"; echo $s; - } /***************************/ -- 2.25.1