summaryrefslogtreecommitdiff
path: root/register.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-20 06:52:10 +0100
committerAndrew Dolgov <[email protected]>2009-01-20 06:52:10 +0100
commita53f3dc42201fa79811cb3846670b5beabac3550 (patch)
tree9f27bb8d50bc60a93fc2674768611600cc7c57e3 /register.php
parent0e70ed515b5667ca40805cbbcd33c98dc12f9230 (diff)
register: use include files
Diffstat (limited to 'register.php')
-rw-r--r--register.php13
1 files changed, 10 insertions, 3 deletions
diff --git a/register.php b/register.php
index 558561356..bf7ca4c0a 100644
--- a/register.php
+++ b/register.php
@@ -1,8 +1,8 @@
<?php
- // Note: this script uses an undocumented constant in config.php named
- // REG_NOTIFY_ADDRESS - email address to send registration notifications to.
+ // This file uses two additional include files:
//
- // define('REG_NOTIFY_ADDRESS', '[email protected]');
+ // 1) templates/register_notice.txt - displayed above the registration form
+ // 2) register_expire_do.php - contains user expiration queries when necessary
error_reporting(E_ERROR | E_WARNING | E_PARSE);
@@ -31,6 +31,10 @@
AND created < DATE_SUB(NOW(), INTERVAL 1 DAY) AND access_level = 0");
}
+ if (file_exists("register_expire_do.php")) {
+ require_once "register_expire_do.php";
+ }
+
if ($action == "check") {
header("Content-Type: application/xml");
@@ -158,6 +162,9 @@
<!-- If you have any rules or ToS you'd like to display, enter them here -->
+<?php if (file_exists("templates/register_notice.txt")) {
+ require_once "templates/register_notice.txt";
+} ?>
<?php if (REG_MAX_USERS > 0) {
$result = db_query($link, "SELECT COUNT(*) AS cu FROM ttrss_users");