diff options
author | pb1dft <pb1dft@ampache> | 2007-01-08 22:14:21 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2007-01-08 22:14:21 +0000 |
commit | bc1cf374f423fb26c4f573fbb5a81dca517042ca (patch) | |
tree | b7b4e6c1762c535a57a7e307d723c9b7f847724f | |
parent | 4818413e5fc72aac3fbc28a9ae6f28732339d54b (diff) | |
download | ampache-bc1cf374f423fb26c4f573fbb5a81dca517042ca.tar.gz ampache-bc1cf374f423fb26c4f573fbb5a81dca517042ca.tar.bz2 ampache-bc1cf374f423fb26c4f573fbb5a81dca517042ca.zip |
minor change in user registration agreement
-rw-r--r-- | config/registration_agreement.php.dist | 2 | ||||
-rw-r--r-- | lib/ui.lib.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/config/registration_agreement.php.dist b/config/registration_agreement.php.dist index de35973d..423460c1 100644 --- a/config/registration_agreement.php.dist +++ b/config/registration_agreement.php.dist @@ -1 +1 @@ -**This is the plain TXT document that is put at the top of the User Registration page** +**This is the plain TXT or HTML document that is put at the top of the User Registration page** diff --git a/lib/ui.lib.php b/lib/ui.lib.php index bc87289f..3afe4386 100644 --- a/lib/ui.lib.php +++ b/lib/ui.lib.php @@ -1042,7 +1042,7 @@ function show_registration_agreement() { $data = fread($fp,filesize($filename)); /* Scrub and show */ - echo scrub_out($data); + echo $data; } // show_registration_agreement |