diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-25 08:32:01 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-25 08:32:01 +0000 |
commit | 37c5f052baca5ffd8130468464cf8a9a91d83ece (patch) | |
tree | 9eeaeb22fd03a4ab765ec0c517f2d4b078c9d073 /templates | |
parent | b9850e0b05057a3b8c217982a391b3cdf87f556e (diff) | |
download | ampache-37c5f052baca5ffd8130468464cf8a9a91d83ece.tar.gz ampache-37c5f052baca5ffd8130468464cf8a9a91d83ece.tar.bz2 ampache-37c5f052baca5ffd8130468464cf8a9a91d83ece.zip |
fixed the centering on the MOTD
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_login_form.inc.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/show_login_form.inc.php b/templates/show_login_form.inc.php index 7f564e9f..53563c5f 100644 --- a/templates/show_login_form.inc.php +++ b/templates/show_login_form.inc.php @@ -84,8 +84,12 @@ function focus(){ document.login.username.focus(); } </div> <?php if (@is_readable(Config::get('prefix') . '/config/motd.php')) { +?> + <div id="motd"> + <?php show_box_top(_('Message of the Day')); include Config::get('prefix') . '/config/motd.php'; show_box_bottom(); -} -?> + ?> + </div> +<?php } ?> |