Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
kalcaddle committed Sep 6, 2018
1 parent f184f3e commit 3e94e9d
Show file tree
Hide file tree
Showing 25 changed files with 48 additions and 45 deletions.
4 changes: 2 additions & 2 deletions app/controller/systemMember.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public function add($user = false){
}else{
$userArray[] = $name;
}
$nickName = $name;
$nickName = 0;
if(isset($this->in['nickName'])){
$nickName = trim(rawurldecode($this->in['nickName']));
}
Expand All @@ -291,7 +291,7 @@ public function add($user = false){
$userInfo = array(
'userID' => $userID,
'name' => $val,
'nickName' => $nickName,
'nickName' => $nickName ? $nickName : $val,
'password' => md5($password),
'role' => $this->in['role'],
'config' => array('sizeMax' => floatval($this->in['sizeMax']),//M
Expand Down
2 changes: 1 addition & 1 deletion app/controller/utils.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/toolsCommon/static/pie/.pie.tif

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions plugins/zipView/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id":"zipView",
"name":"{{LNG.Plugin.default.zipView}}",
"title":"",
"version":"1.32",
"version":"1.34",
"source":{
"icon":"{{pluginHost}}static/images/icon.png",
"screenshoot":[
Expand Down Expand Up @@ -34,7 +34,7 @@
"type":"number",
"display":"{{LNG.Plugin.Config.fileSort}}",
"desc":"{{LNG.Plugin.Config.fileSortDesc}}",
"value":10,
"value":10
}
}
}
3 changes: 3 additions & 0 deletions plugins/zipView/static/page.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
define(function(require, exports) {
if(!core.authCheck('explorer.fileDownload')){
$(".context-menu-list .open-browser").remove();
}
var menuAction = function(action,option){
//console.log(action,option);
var zip = function(fileType){
Expand Down
4 changes: 2 additions & 2 deletions static/js/app/src/api/default/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/api/view/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/app/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/desktop/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/edit/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/editor/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/explorer/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/explorerWap/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/plugins/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/setting/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/shareEditor/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/shareExplorer/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/shareIndex/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/js/app/src/user/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/style/skin/base/app_code_edit.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/style/skin/base/app_desktop.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/style/skin/base/app_editor.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions static/style/skin/base/app_explorer.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/style/skin/base/app_setting.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/style/skin/base/common.css

Large diffs are not rendered by default.

0 comments on commit 3e94e9d

Please sign in to comment.