From cd3db00051735413bb8f074e77670e7ac79a778d Mon Sep 17 00:00:00 2001 From: lkehresman Date: Fri, 31 Mar 2000 03:07:33 +0000 Subject: [PATCH] fixed bug where "use a signature" appeared twice. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@366 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/options.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/options.php b/src/options.php index 425311af..a32ac0b4 100644 --- a/src/options.php +++ b/src/options.php @@ -306,10 +306,11 @@ echo "
"; if ($use_signature == true) echo "  Use a signature?
"; - else + else { echo "  "; echo _("Use a signature?"); echo "
"; + } if ($editor_size < 5) $sig_size = 76; -- 2.25.1