From 4b53c0a3d45869c255e875bdfa016c82bd31f1fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E8=83=A1?= <3203164629@qq.com> Date: Sat, 13 Apr 2024 15:35:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=87=B3v1.87.7=EF=BC=8C?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=86=85=E5=AE=B9=E5=9C=A8DzzOffice=20?= =?UTF-8?q?=E7=AC=94=E8=AE=B0=E4=B8=AD=E6=9F=A5=E7=9C=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/appmarket/cp.php | 1 + admin/appmarket/edit.php | 5 + admin/appmarket/import.php | 2 +- admin/appmarket/template/appdefault.htm | 13 +-- admin/appmarket/template/extopen.htm | 18 +--- admin/cloud/template/cloud.htm | 11 +-- admin/cloud/template/movetool.htm | 11 +-- admin/cloud/template/router.htm | 11 +-- admin/cloud/template/space.htm | 11 +-- admin/member/template/profileset.htm | 10 -- admin/member/template/verifyset.htm | 7 +- admin/member/template/verifyset_edit.htm | 5 - admin/setting/images/setting.css | 11 --- admin/setting/template/perm_group.htm | 7 +- admin/setting/template/smiley.htm | 11 +-- admin/system/cron.php | 6 +- admin/system/database.php | 12 +-- admin/system/template/cron.htm | 6 +- admin/system/template/database.htm | 12 ++- core/template/default/common/footer.htm | 4 +- .../template/default/common/footer_simple.htm | 4 +- .../template/default/common/footer_system.htm | 95 ------------------- dzz/orguser/export.php | 1 + dzz/orguser/index.php | 2 +- dzz/system/template/filelist.htm | 2 +- dzz/system/template/fileselection/index.htm | 2 +- 26 files changed, 63 insertions(+), 217 deletions(-) diff --git a/admin/appmarket/cp.php b/admin/appmarket/cp.php index e753378..a1cc11f 100644 --- a/admin/appmarket/cp.php +++ b/admin/appmarket/cp.php @@ -71,6 +71,7 @@ if ($do == 'export') {//应用导出 } elseif ($do == 'import') {//导入应用 + $navtitle=lang('import_type_app').' - '.lang('appname'); if (!submitcheck('importsubmit')) { include template('import'); } else { diff --git a/admin/appmarket/edit.php b/admin/appmarket/edit.php index bf11266..6381159 100644 --- a/admin/appmarket/edit.php +++ b/admin/appmarket/edit.php @@ -134,6 +134,11 @@ if (submitcheck('appsubmit')) { echo ""; exit(); } else { + if (!$appid) { + $navtitle=lang('add_app').' - '.lang('appname'); + }else{ + $navtitle=lang('edit_app').' - '.lang('appname'); + } include_once libfile('function/organization'); $sexts = array(); foreach ($exts as $ext) { diff --git a/admin/appmarket/import.php b/admin/appmarket/import.php index 10cf25e..e413bf7 100644 --- a/admin/appmarket/import.php +++ b/admin/appmarket/import.php @@ -12,7 +12,7 @@ if (!defined('IN_DZZ') || !defined('IN_ADMIN')) { include libfile('function/admin'); include libfile('function/organization'); $do = empty($_GET['do']) ? 'available' : trim($_GET['do']); - +$navtitle=lang('import_type_app').' - '.lang('appname'); $page = empty($_GET['page']) ? 1 : intval($_GET['page']); $perpage = 20; $gets = array('mod' => MOD_NAME, 'op' => 'import', 'do' => $do, ); diff --git a/admin/appmarket/template/appdefault.htm b/admin/appmarket/template/appdefault.htm index 0d32159..2e6f4b4 100644 --- a/admin/appmarket/template/appdefault.htm +++ b/admin/appmarket/template/appdefault.htm @@ -84,15 +84,10 @@ -
-
- -
{lang board_message}
- -
-
+ diff --git a/admin/appmarket/template/extopen.htm b/admin/appmarket/template/extopen.htm index 6799ba5..234b827 100644 --- a/admin/appmarket/template/extopen.htm +++ b/admin/appmarket/template/extopen.htm @@ -55,7 +55,7 @@ - $key + $key
@@ -80,18 +80,10 @@ - -
-
- -
- {lang board_message} -
-
    - {lang extopen_board_message_text} -
-
-
+ diff --git a/admin/cloud/template/cloud.htm b/admin/cloud/template/cloud.htm index 673a5a7..f8d36a2 100644 --- a/admin/cloud/template/cloud.htm +++ b/admin/cloud/template/cloud.htm @@ -60,14 +60,9 @@
-
-
- -
{lang board_message}
- -
+
diff --git a/admin/cloud/template/movetool.htm b/admin/cloud/template/movetool.htm index f741098..de9ec6a 100644 --- a/admin/cloud/template/movetool.htm +++ b/admin/cloud/template/movetool.htm @@ -87,15 +87,10 @@ -
-
- -
{lang board_message}
- + -
- diff --git a/dzz/orguser/export.php b/dzz/orguser/export.php index c11eee5..7dc1b82 100644 --- a/dzz/orguser/export.php +++ b/dzz/orguser/export.php @@ -16,6 +16,7 @@ if($_G['adminid']!=1) showmessage('system_administrator_export',dreferer()); $h1=getProfileForImport(); $h0=array_merge($h0,$h1); $orgid=intval($_GET['orgid']); +$navtitle = lang('export_user').' - '.lang('appname'); if(!submitcheck('exportsubmit')){ $orgpath=C::t('organization')->getPathByOrgid($orgid); if(empty($orgpath)) $orgpath=lang('please_select_range_export'); diff --git a/dzz/orguser/index.php b/dzz/orguser/index.php index 9907268..63221c3 100644 --- a/dzz/orguser/index.php +++ b/dzz/orguser/index.php @@ -9,7 +9,7 @@ if (!defined('IN_DZZ')) { exit('Access Denied'); } -$navtitle= lang('appname'); +$navtitle = lang('appname'); $orgtree = array(); if ($_G['adminid'] != 1) { //获取用户的有权限的部门树 diff --git a/dzz/system/template/filelist.htm b/dzz/system/template/filelist.htm index 044d46c..843df2f 100644 --- a/dzz/system/template/filelist.htm +++ b/dzz/system/template/filelist.htm @@ -326,4 +326,4 @@ function hide_window(){ - \ No newline at end of file + \ No newline at end of file diff --git a/dzz/system/template/fileselection/index.htm b/dzz/system/template/fileselection/index.htm index 0935858..1d7859b 100644 --- a/dzz/system/template/fileselection/index.htm +++ b/dzz/system/template/fileselection/index.htm @@ -204,4 +204,4 @@ html, body{ - \ No newline at end of file + \ No newline at end of file