diff options
-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 |