1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 12:20:44 +02:00

Clarify purpose of 'banlist' page

This commit is contained in:
e107steved
2007-02-11 10:33:58 +00:00
parent 9cf595d9b3
commit 43db306aea
3 changed files with 16 additions and 13 deletions

View File

@@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_admin/banlist.php,v $ | $Source: /cvs_backup/e107_0.8/e107_admin/banlist.php,v $
| $Revision: 1.1.1.1 $ | $Revision: 1.2 $
| $Date: 2006-12-02 04:33:11 $ | $Date: 2007-02-11 10:33:28 $
| $Author: mcfly_e107 $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
require_once("../class2.php"); require_once("../class2.php");
@@ -96,6 +96,7 @@ $text .= "<div style='text-align:center'>
</form> </form>
</div>"; </div>";
$text .= "<div style='text-align:center'><br />".BANLAN_13."<a href='".e_ADMIN."users.php'><img src='".e_IMAGE."admin_images/users_16.png' alt='' /></a></div>";
if(!varsettrue($pref['enable_rdns'])) if(!varsettrue($pref['enable_rdns']))
{ {
$text .= "<div style='text-align:center'><br />".BANLAN_12."</div>"; $text .= "<div style='text-align:center'><br />".BANLAN_12."</div>";

View File

@@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_languages/English/admin/help/banlist.php,v $ | $Source: /cvs_backup/e107_0.8/e107_languages/English/admin/help/banlist.php,v $
| $Revision: 1.1.1.1 $ | $Revision: 1.2 $
| $Date: 2006-12-02 04:34:42 $ | $Date: 2007-02-11 10:33:36 $
| $Author: mcfly_e107 $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -27,6 +27,8 @@ Entering the IP address 123.123.123.123 will stop the user with that address vis
Entering the IP address 123.123.123.* will stop anyone in that IP range from visiting your site.<br /><br /> Entering the IP address 123.123.123.* will stop anyone in that IP range from visiting your site.<br /><br />
<b>Banning by email address</b><br /> <b>Banning by email address</b><br />
Entering the email address foo@bar.com will stop anyone using that email address from registering as a member on your site.<br /> Entering the email address foo@bar.com will stop anyone using that email address from registering as a member on your site.<br />
Entering the email address *@bar.com will stop anyone using that email domain from registering as a member on your site."; Entering the email address *@bar.com will stop anyone using that email domain from registering as a member on your site.<br /><br />
<b>Banning by user name</b><br />
This is done from the user administration page.";
$ns -> tablerender($caption, $text); $ns -> tablerender($caption, $text);
?> ?>

View File

@@ -4,9 +4,9 @@
| e107 website system - Language File. | e107 website system - Language File.
| |
| $Source: /cvs_backup/e107_0.8/e107_languages/English/admin/lan_banlist.php,v $ | $Source: /cvs_backup/e107_0.8/e107_languages/English/admin/lan_banlist.php,v $
| $Revision: 1.1.1.1 $ | $Revision: 1.2 $
| $Date: 2006-12-02 04:34:40 $ | $Date: 2007-02-11 10:33:36 $
| $Author: mcfly_e107 $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
define("BANLAN_1", "Ban removed."); define("BANLAN_1", "Ban removed.");
@@ -15,11 +15,11 @@ define("BANLAN_3", "Existing Bans");
define("BANLAN_4", "Remove ban"); define("BANLAN_4", "Remove ban");
define("BANLAN_5", "Enter IP, email address, or host"); define("BANLAN_5", "Enter IP, email address, or host");
define("BANLAN_7", "Reason"); define("BANLAN_7", "Reason");
define("BANLAN_8", "Ban User"); define("BANLAN_8", "Ban Address");
define("BANLAN_9", "Ban users from site"); define("BANLAN_9", "Ban users from site by email, IP or host address");
define("BANLAN_10", "IP / Email / Reason"); define("BANLAN_10", "IP / Email / Reason");
define("BANLAN_11", "Auto-ban: More than 10 failed login attempts"); define("BANLAN_11", "Auto-ban: More than 10 failed login attempts");
define("BANLAN_12", "Note: Reverse DNS is currently disabled, it must be enabled to allow banning by host. Banning by IP and email will still function normally."); define("BANLAN_12", "Note: Reverse DNS is currently disabled, it must be enabled to allow banning by host. Banning by IP and email will still function normally.");
define("BANLAN_13", "Note: To ban a user by user name, go to the users admin page: ");
?> ?>