updated version output
This commit is contained in:
parent
2a3a2a4605
commit
47089101df
|
@ -4,7 +4,7 @@ $Id$
|
||||||
|
|
||||||
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
|
||||||
Copyright (C) 2003 - 2006 Michael Duergner
|
Copyright (C) 2003 - 2006 Michael Duergner
|
||||||
2005 - 2010 Roland Gruber
|
2005 - 2011 Roland Gruber
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -410,11 +410,11 @@ function display_LoginPage($config_object) {
|
||||||
<SMALL>
|
<SMALL>
|
||||||
<?php
|
<?php
|
||||||
if (isLAMProVersion()) {
|
if (isLAMProVersion()) {
|
||||||
echo "LDAP Account Manager <b>Pro</b>: <b>" . LAMVersion() . "</b> ";
|
echo "LDAP Account Manager Pro - " . LAMVersion() . " ";
|
||||||
logNewMessage(LOG_DEBUG, "LAM Pro " . LAMVersion());
|
logNewMessage(LOG_DEBUG, "LAM Pro " . LAMVersion());
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
echo "LDAP Account Manager: <b>" . LAMVersion() . "</b> ";
|
echo "LDAP Account Manager - " . LAMVersion() . " ";
|
||||||
logNewMessage(LOG_DEBUG, "LAM " . LAMVersion());
|
logNewMessage(LOG_DEBUG, "LAM " . LAMVersion());
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -89,7 +89,15 @@ foreach ($toSort as $key => $value) {
|
||||||
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
<table border=0 width="100%" class="lamHeader ui-corner-all">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" height="30">
|
<td align="left" height="30">
|
||||||
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window"> <img src="<?php echo $headerPrefix; ?>../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager</a>
|
<a class="lamHeader" href="http://www.ldap-account-manager.org/" target="new_window">
|
||||||
|
<img src="<?php echo $headerPrefix; ?>../graphics/logo32.png" width=24 height=24 class="align-middle" alt="LDAP Account Manager"> LDAP Account Manager
|
||||||
|
<?php
|
||||||
|
if (isLAMProVersion()) {
|
||||||
|
echo " Pro";
|
||||||
|
}
|
||||||
|
echo " - " . LAMVersion();
|
||||||
|
?>
|
||||||
|
</a>
|
||||||
</td>
|
</td>
|
||||||
<td align="right" height=30>
|
<td align="right" height=30>
|
||||||
<ul id="dropmenu" class="dropmenu">
|
<ul id="dropmenu" class="dropmenu">
|
||||||
|
|
Loading…
Reference in New Issue