summaryrefslogtreecommitdiffstats
path: root/login.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-24 20:42:55 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-24 20:42:55 +0000
commit3ad79fc4c9a6718a336fd929e33b6a0ac9bbf173 (patch)
tree155abe19a61dd758cfcfe971146eb01876903a7e /login.php
parentab076e07058f75de17cfdbe311d35753f9da7b43 (diff)
downloadampache-3ad79fc4c9a6718a336fd929e33b6a0ac9bbf173.tar.gz
ampache-3ad79fc4c9a6718a336fd929e33b6a0ac9bbf173.tar.bz2
ampache-3ad79fc4c9a6718a336fd929e33b6a0ac9bbf173.zip
fixed user registration and missing motd and fudged up the access lists for the time being
Diffstat (limited to 'login.php')
-rw-r--r--login.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/login.php b/login.php
index e044beb1..1b5634af 100644
--- a/login.php
+++ b/login.php
@@ -134,7 +134,11 @@ function focus(){ document.login.username.focus(); }
require(conf('prefix') . "/templates/show_login_form.inc");
if (@is_readable(conf('prefix') . '/config/motd.php')) {
+ echo "<div align=\"center\">\n";
+ show_box_top(_('Message of the Day'));
include conf('prefix') . '/config/motd.php';
+ show_box_bottom();
+ echo "</div>\n";
}
?>