From e712e1b9e112075821c13714fdb2693a2357c9e6 Mon Sep 17 00:00:00 2001 From: Moc Date: Fri, 22 Mar 2013 10:48:49 +0100 Subject: [PATCH] Comments manager - minor LAN fix (added LAN_IP) --- e107_admin/comment.php | 2 +- e107_languages/English/admin/lan_admin.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/e107_admin/comment.php b/e107_admin/comment.php index 67492322a..8dfe1d291 100644 --- a/e107_admin/comment.php +++ b/e107_admin/comment.php @@ -86,7 +86,7 @@ class comments_admin_ui extends e_admin_ui 'comment_author_name' => array('title'=> "authorName", 'type' => 'user', 'width' => 'auto', 'readParms'=>'idField=comment_author_id&link=1', 'noedit' => true, 'forceSave' => true), // User name 'u.user_name' => array('title'=> "System user", 'type' => 'user', 'width' => 'auto', 'readParms'=>'idField=comment_author_id&link=1', 'noedit' => true), // User name 'comment_datestamp' => array('title'=> LAN_DATESTAMP, 'type' => 'datestamp', 'width' => 'auto'), // User date - 'comment_ip' => array('title'=> LAN_UP, 'type' => 'ip', 'width' => '10%', 'thclass' => 'center' ), // Real name (no real vetting) + 'comment_ip' => array('title'=> LAN_IP, 'type' => 'ip', 'width' => '10%', 'thclass' => 'center' ), // Real name (no real vetting) 'comment_lock' => array('title'=> "Lock", 'type' => 'boolean', 'data'=> 'int', 'thclass' => 'center', 'class'=>'center', 'filter' => true, 'batch' => true, 'width' => 'auto'), 'options' => array('title'=> LAN_OPTIONS, 'type' => null, 'forced'=>TRUE, 'width' => '10%', 'thclass' => 'center last', 'class' => 'center') ); diff --git a/e107_languages/English/admin/lan_admin.php b/e107_languages/English/admin/lan_admin.php index 9ff4e38df..03388f269 100644 --- a/e107_languages/English/admin/lan_admin.php +++ b/e107_languages/English/admin/lan_admin.php @@ -322,6 +322,7 @@ define("LAN_OWNER", "Owner"); define("LAN_NAME", "Name"); define("LAN_EMAIL","Email address"); define("LAN_ID", "ID"); +define("LAN_IP", "IP Address"); define("LAN_TITLE", "Title"); define("LAN_DESCRIPTION", "Description"); define("LAN_VISIBILITY", "Visibility");