register: use include files
This commit is contained in:
parent
0e70ed515b
commit
a53f3dc422
1 changed files with 10 additions and 3 deletions
13
register.php
13
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', '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);
|
||||
|
||||
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue