1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-08 15:46:44 +02:00

Closes #287 - enhancement to already logged in message.

This commit is contained in:
Moc
2013-05-14 20:51:18 +02:00
parent 79b58c1f7b
commit 53c8dad760
2 changed files with 2 additions and 1 deletions

View File

@@ -155,6 +155,7 @@ define("LAN_SIGNUP_108", "Must be a valid email address");
define("LAN_SIGNUP_109", "Is CaSe sensitive and must not contain spaces");//TODO check against regex requirements
define("LAN_SIGNUP_110", "Your full name");
define("LAN_SIGNUP_111", "Enter a URL to your image or choose an existing avatar.");
define("LAN_SIGNUP_112", "You are currently logged in as Main Admin.");
// BC for v1.x template
define("LAN_7", "Display Name: ");

View File

@@ -284,7 +284,7 @@ if(getperms('0')) // allow main admin to view signup page for design/testing.
{
//$mes = e107::getMessage();
//$mes->debug("You are currently logged in.");
$SIGNUP_BEGIN = "<div class='alert alert-block alert-error'> You are currently logged in.</div>". $SIGNUP_BEGIN;
$SIGNUP_BEGIN = "<div class='alert alert-block alert-error text-center'>".LAN_SIGNUP_112."</div>". $SIGNUP_BEGIN;
}