]> git.wh0rd.org - tt-rss.git/commitdiff
register: use include files
authorAndrew Dolgov <fox@bah.spb.su>
Tue, 20 Jan 2009 05:52:10 +0000 (06:52 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Tue, 20 Jan 2009 05:52:10 +0000 (06:52 +0100)
register.php

index 558561356f873cbc8887b3ed2716ad66d89f575e..bf7ca4c0abb3c5a9c3afff5c78fb9fe3983ce12a 100644 (file)
@@ -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', 'my-address@domain.dom');
+       // 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);
 
                                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");
 
 
 <!-- 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");