BUG 0000 Small layout change. Enterprise plugin message position

The plugin message was moved to top just among User name to not add an extra line that affect extjs frames
This commit is contained in:
Hugo Loza
2011-09-30 11:41:02 -04:00
parent fc43ca182f
commit f2f48e2fa6
2 changed files with 19 additions and 17 deletions

4
workflow/engine/skinEngine/base/layout.html Executable file → Normal file
View File

@@ -17,10 +17,10 @@
<div align="right" class="logout"> <div align="right" class="logout">
<small> <small>
{php}if ((int)$_SESSION['USER_LOGGED'] != 0) {{/php} {php}if ((int)$_SESSION['USER_LOGGED'] != 0) {{/php}
<label class="textBlue">{$userfullname} <a href="../users/myInfo">{$user}</a> | </label> {$msgVer}<label class="textBlue">{$userfullname} <a href="../users/myInfo">{$user}</a> | </label>
<a href="{$linklogout}" class="tableOption">{$logout}</a>&nbsp;&nbsp;<br/> <a href="{$linklogout}" class="tableOption">{$logout}</a>&nbsp;&nbsp;<br/>
<label class="textBlack"><b>{$rolename}</b> {$workspace_label} <b><u>{$workspace}</u></b> &nbsp; &nbsp; <br/> <label class="textBlack"><b>{$rolename}</b> {$workspace_label} <b><u>{$workspace}</u></b> &nbsp; &nbsp; <br/>
{$udate}</label>&nbsp; &nbsp;{$msgVer} {$udate}</label>&nbsp; &nbsp;
{php}}{/php} {php}}{/php}
</small> </small>
</div> </div>

4
workflow/engine/skinEngine/skinEngine.php Executable file → Normal file
View File

@@ -452,7 +452,9 @@ if (isset($G_ENABLE_BLANK_SKIN) && $G_ENABLE_BLANK_SKIN) {
$expireIn=$pmLicenseManagerO->getExpireIn(); $expireIn=$pmLicenseManagerO->getExpireIn();
$expireInLabel=$pmLicenseManagerO->getExpireInLabel(); $expireInLabel=$pmLicenseManagerO->getExpireInLabel();
//if($expireIn<=30){ //if($expireIn<=30){
$smarty->assign('msgVer', '<br><label class="textBlack">'.$expireInLabel.'</label>&nbsp;&nbsp;'); if($expireInLabel!=""){
$smarty->assign('msgVer', '<label class="textBlack">'.$expireInLabel.'</label>&nbsp;&nbsp;');
}
//} //}
} }