1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-03 21:27:25 +02:00

Fix for LAN names.

This commit is contained in:
Cameron
2016-09-14 11:55:37 -07:00
parent b91d6e6117
commit b41797cc3f
2 changed files with 4 additions and 4 deletions

View File

@@ -595,9 +595,9 @@ class adminstyle_infopanel
$text2 = "<div id='customize_icons' class='forumheader3' style='border:0px;margin:0px'> $text2 = "<div id='customize_icons' class='forumheader3' style='border:0px;margin:0px'>
<form method='post' id='e-modal-form' action='".e_SELF."'>"; <form method='post' id='e-modal-form' action='".e_SELF."'>";
$text2 .= $ns->tablerender(LAN_P_ICONS, $this->render_infopanel_icons(),'personalize',true); $text2 .= $ns->tablerender(LAN_PERSONALIZE_ICONS, $this->render_infopanel_icons(),'personalize',true);
$text2 .= "<div class='clear'>&nbsp;</div>"; $text2 .= "<div class='clear'>&nbsp;</div>";
$text2 .= $ns->tablerender(LAN_P_MENUS, $this->render_infopanel_menu_options(),'personalize',true); $text2 .= $ns->tablerender(LAN_PERSONALIZE_MENUS, $this->render_infopanel_menu_options(),'personalize',true);
// $text2 .= render_infopanel_icons(); // $text2 .= render_infopanel_icons();
//$text2 .= "<div class='clear'>&nbsp;</div>"; //$text2 .= "<div class='clear'>&nbsp;</div>";
// $text2 .= "<h3>Menus</h3>"; // $text2 .= "<h3>Menus</h3>";

View File

@@ -439,7 +439,7 @@ define("LAN_LIMIT", "Limit");
define("LAN_BASIC", "Basic"); define("LAN_BASIC", "Basic");
define("LAN_ADVANCED", "Advanced"); define("LAN_ADVANCED", "Advanced");
define("LAN_FOLDER", "Folder"); define("LAN_FOLDER", "Folder");
define("LAN_P_ICONS", "Personalize Icons"); define("LAN_PERSONALIZE_ICONS", "Personalize Icons");
define("LAN_P_MENUS", "Personalize Menus"); define("LAN_PERSONALIZE_MENUS", "Personalize Menus");
define("LAN_LATEST_COMMENTS", "Latest Comments"); define("LAN_LATEST_COMMENTS", "Latest Comments");
define("LAN_PERSONALIZE", "Personalize"); define("LAN_PERSONALIZE", "Personalize");