version 4.34 release.

pull/297/head
warlee 2018-09-04 18:31:30 +08:00
parent 88c9f6bc86
commit e8c9ec32fc
10 changed files with 37 additions and 23 deletions

View File

@ -1,3 +1,15 @@
### ver4.34 `2018/09/5`
-----
#### update:
- 新建文件,不同排序字段及排序方式,新建文件插入位置优化。
- 子目录集成副部们权限优化
- 细节样式等优化
#### fix bug
- 压缩文件夹预览,没有写权限也允许查看(个人可查看部门压缩文件内容)
- 压缩文件夹解压权限优化(没有写权限的目录,不允许解压到该目录;公共目录下的压缩文件没有写权限不可解压)
- 用户使用空间大小变更优化
### ver4.33 `2018/08/28`
-----
#### update:
@ -192,7 +204,7 @@
- iOS 对话框含有iframe 时滚动条失效问题优化
- 桌面开始菜单优化
### ver4.24 2017/10/10
### ver4.24 `2017/10/10`
-----
#### update:
- url获取服务器兼容性优化(sso部分使用)
@ -1311,9 +1323,8 @@
-
### ver2.0 `2014/3/2`
### ver2.01 `2014/3/2`
-----
#### fix bug:bug解决和程序优化
- body右键屏蔽(保留input、textarea)
- 重命名&新建时 右键(编辑内容系统菜单)
@ -1356,7 +1367,7 @@
- 自动升级(本地记录版本服务器js调用 参数 url、### version忽略此版本。cookie。统计用户)
### ver2.0 debug `2014/3/2`
### ver2.0 `2014/3/2`
-----
#### fix bug:bug解决和程序优化
- 优化文件打开处理

View File

@ -14,15 +14,18 @@ class explorer extends Controller{
$this->user = $_SESSION['kodUser'];
if (isset($this->in['path'])) {
//游客访问别人zip解压到**目录;入口不检测权限
$pathNotCheck = array("explorer.unzip");
$pathNotCheckFlag = in_array(ST.'.'.ACT,$pathNotCheck);
if($pathNotCheckFlag){
if( ST.'.'.ACT == "explorer.unzip" ){
if($this->in['pathTo']){
_DIR($this->in['pathTo']);
}else{
_DIR($this->in['path']);
}
$GLOBALS['kodPathAuthCheck'] = true;
}
if( ST.'.'.ACT == "explorer.unzipList" ){
$GLOBALS['kodPathAuthCheck'] = true;
}
$this->path = _DIR($this->in['path']);
if($pathNotCheckFlag){
$GLOBALS['kodPathAuthCheck'] = false;
}
$this->_checkSystemPath();
}
}

File diff suppressed because one or more lines are too long

View File

@ -1,2 +1,2 @@
<?php
define('KOD_VERSION','4.33');
define('KOD_VERSION','4.34');

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
/* power by kodexplorer ver 4.33(2018-09-03) [build 1535948286.7959] */
/* power by kodexplorer ver 4.34(2018-09-04) [build 1536056927.7943] */
@import url('./fileIcon.css');
@import url('./common.css');
.frame-main{position:absolute;top:40px;width:100%;bottom:0px;}.frame-main .tools-left{background:#f8f8f8 url("../../../images/common/bg.gif") 0 0px;position:fixed;line-height:30px;padding-left:20px;height:28px;border-bottom:1px solid #ddd;left:0;width:100%;}.frame-main .tools-left a{font-size:1.25em;font-weight:800;text-decoration:none;color:#999;text-shadow:0 0 3px;display:inline-block;padding:2px 6px;margin-top:0;height:20px;line-height:20px;}.frame-main .tools-left a:hover{background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;-webkit-box-shadow:0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:0 2px 8px rgba(0,0,0,0.8);box-shadow:0 2px 8px rgba(0,0,0,0.8);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}.frame-main .frame-left{position:absolute;left:0;top:30px;bottom:0;width:200px;background:#fff;background-attachment:fixed;overflow:auto;}.frame-main .frame-left .ztree{margin-top:0;}.frame-main .frame-left .ztree li.level0{margin-bottom:5px;}.frame-main .frame-resize{width:10px;cursor:col-resize;z-index:100;position:absolute;left:195px;top:0;bottom:0;overflow:hidden;background:url("../../../images/common/resize.png") 0px 50% no-repeat;}.frame-main .frame-resize.active{background:#000;opacity:0.2;filter:alpha(opacity=20);}.frame-main .frame-right{left:200px;right:0;position:absolute;top:0;bottom:0;overflow:auto;}.frame-main .frame-right .frame-right-main .resize-mask{z-index:999;position:absolute;left:0;top:0;bottom:0;right:0;display:none;}.frame-main .frame-right .frame-right-main .frame{height:100%;border-left:1px solid #ddd;overflow:hidden;}
/* ver 4.33(2018-09-03) [build 1535948286.7959] */
/* ver 4.34(2018-09-04) [build 1536056927.7943] */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long