From 7792b3ca95e46a5e16342cbef4b2cac8e4895bcb Mon Sep 17 00:00:00 2001 From: e107steved Date: Wed, 16 Jul 2008 20:45:24 +0000 Subject: [PATCH] Bugtracker #4454 - hard-coded LAN --- e107_plugins/links_page/languages/English.php | 8 +++++--- e107_plugins/links_page/search/search_comments.php | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/e107_plugins/links_page/languages/English.php b/e107_plugins/links_page/languages/English.php index 55a4df599..3fd09e295 100644 --- a/e107_plugins/links_page/languages/English.php +++ b/e107_plugins/links_page/languages/English.php @@ -4,9 +4,9 @@ | e107 website system - Language File. | | $Source: /cvs_backup/e107_0.8/e107_plugins/links_page/languages/English.php,v $ -| $Revision: 1.3 $ -| $Date: 2007-03-27 13:48:30 $ -| $Author: lisa_ $ +| $Revision: 1.4 $ +| $Date: 2008-07-16 20:45:24 $ +| $Author: e107steved $ +----------------------------------------------------------------------------+ */ @@ -312,6 +312,8 @@ define("LAN_LINKS_48", "-- view category --"); define("LAN_LINKS_49", ""); define("LAN_LINKS_50", "You do not have permission to submit links at present"); +define('LAN_LINKS_SCH_1','Posted in reply to link'); + define("LAN_ADMIN_HELP_0", "linkspage help area"); define("LAN_ADMIN_HELP_1", "the manage link categories page shows all categories present.

detailed list
You see a list of all categories with their icon, name and description, options, and sorting options.

explanation of icons
diff --git a/e107_plugins/links_page/search/search_comments.php b/e107_plugins/links_page/search/search_comments.php index 0b9acd61a..d432d518b 100644 --- a/e107_plugins/links_page/search/search_comments.php +++ b/e107_plugins/links_page/search/search_comments.php @@ -10,7 +10,7 @@ function com_search_links_page($row) { global $con; $datestamp = $con -> convert_date($row['comment_datestamp'], "long"); $res['link'] = e_PLUGIN."links_page/links.php?comment.".$row['link_id']; - $res['pre_title'] = 'Posted in reply to link: '; + $res['pre_title'] = LAN_LINKS_SCH_1.': '; $res['title'] = $row['link_name']; $res['summary'] = $row['comment_comment']; preg_match("/([0-9]+)\.(.*)/", $row['comment_author'], $user);