From 1eb8855bc71980564b2c6ed77a2fdcce816b34ad Mon Sep 17 00:00:00 2001 From: ydavids Date: Wed, 14 Nov 2007 14:35:32 +0000 Subject: [PATCH] KTS-2488 "Improve database incompatibility error message" Fixed. Error message changed. --- templates/ktcore/login.smarty | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/templates/ktcore/login.smarty b/templates/ktcore/login.smarty index aad025d..b996414 100644 --- a/templates/ktcore/login.smarty +++ b/templates/ktcore/login.smarty @@ -30,7 +30,13 @@ {if ($errorMessage == null)}

{i18n}Please enter your details below to login.{/i18n}

{else} -
{$errorMessage|sanitize}
+
+ {if ($errorMessage == $errorMessageConfirm)} + {$errorMessage} + {else} + {$errorMessage|sanitize} + {/if} +
{/if} -- libgit2 0.21.4