From 31264cbf83ef71bb67065a26fd03d2bf49109acd Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Tue, 11 Sep 2018 17:48:24 +0200 Subject: [PATCH] update footer... --- PUB/WebUserContols/tpl_footer.ascx.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PUB/WebUserContols/tpl_footer.ascx.cs b/PUB/WebUserContols/tpl_footer.ascx.cs index 36e7872..33b3325 100644 --- a/PUB/WebUserContols/tpl_footer.ascx.cs +++ b/PUB/WebUserContols/tpl_footer.ascx.cs @@ -29,13 +29,13 @@ namespace PUB.WebUserContols get { string answ = memLayer.ML.CRS("Ambient"); - if (answ == "PROD") + if (answ == "DEV") { - answ = devicesAuthProxy.stObj.utente; + answ += " | " + devicesAuthProxy.stObj.utente; } else { - answ += " | " + devicesAuthProxy.stObj.utente; + answ = devicesAuthProxy.stObj.utente; } return answ; }