Remove warning about using IE8 in the admin module

This commit is contained in:
Kijin Sung 2022-12-18 01:38:03 +09:00
parent 7f51e823cd
commit 840a994a91
4 changed files with 2 additions and 17 deletions

View file

@ -389,7 +389,6 @@ $lang->thu = 'Thu';
$lang->fri = 'Fri';
$lang->sat = 'Sat';
$lang->sun = 'Sun';
$lang->checkBrowserIE8 = 'If you use a browser under IE8, admin page will not function normally.';
$lang->subtitle_sitelock = 'Site Lock';
$lang->use_sitelock = 'Use Site Lock';
$lang->sitelock_whitelist = 'IPs allowed to access';
@ -402,4 +401,4 @@ $lang->about_sitelock_in_use = 'Only the administrator and visitors from specifi
$lang->module_exists_in_wrong_path = 'Module(s) installed in incorrect path';
$lang->about_module_exists_in_wrong_path = 'The following module(s) appear to be installed in incorrect directories.<br />Please ignore this message if you have intentionally renamed a module for testing or debugging purposes.';
$lang->apcu_clear_cache_function_not_found = 'apcu is disabled on this server.';
$lang->opcache_reset_function_not_found = 'opcache is disabled on this server.';
$lang->opcache_reset_function_not_found = 'opcache is disabled on this server.';

View file

@ -206,7 +206,6 @@ $lang->thu = '木';
$lang->fri = '金';
$lang->sat = '土';
$lang->sun = '日';
$lang->checkBrowserIE8 = 'IE8以下のブラウザは管理者ベージが正常に動作できない場合があります。';
$lang->subtitle_sitelock = 'サイトロック';
$lang->use_sitelock = 'サイトロック使用';
$lang->sitelock_whitelist = '接近許可IP';

View file

@ -385,7 +385,6 @@ $lang->thu = '목';
$lang->fri = '금';
$lang->sat = '토';
$lang->sun = '일';
$lang->checkBrowserIE8 = 'IE8 이하의 브라우저 사용시 관리자페이지가 정상동작 하지 않을 수 있습니다.';
$lang->subtitle_sitelock = '사이트 잠금';
$lang->use_sitelock = '사이트 잠금 사용';
$lang->sitelock_whitelist = '접근 허용 IP';
@ -398,4 +397,4 @@ $lang->about_sitelock_in_use = '관리자 및 접속이 허용된 IP에서만
$lang->module_exists_in_wrong_path = '잘못된 경로에 설치된 모듈이 있습니다.';
$lang->about_module_exists_in_wrong_path = '아래의 모듈이 잘못된 경로에 설치된 것으로 보입니다. 설치 경로를 다시 확인하시기 바랍니다.<br />테스트나 오류 수정을 위해 임시로 모듈을 다른 경로에 옮겨놓으신 경우 이 메시지는 무시하셔도 됩니다.';
$lang->apcu_clear_cache_function_not_found = 'apcu를 사용하지 않는 서버입니다.';
$lang->opcache_reset_function_not_found = 'opcache를 사용하지 않는 서버입니다.';
$lang->opcache_reset_function_not_found = 'opcache를 사용하지 않는 서버입니다.';

View file

@ -14,10 +14,6 @@
<h1>{$lang->control_panel}</h1>
</div>
<div id="checkBrowserMessage" class="message error" style="display:none;">
<h2>{$lang->checkBrowserIE8}</h2>
</div>
<div cond="isset($XE_VALIDATOR_MESSAGE) && ($XE_VALIDATOR_ID ?? '') == 'modules/admin/tpl/index/1'" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
@ -88,13 +84,5 @@
</div>
</div>
<!--[if lt IE 9]>
<script>
jQuery(function($) {
$('#checkBrowserMessage').show();
});
</script>
<![endif]-->
<include target="./_footer.html" />