Skip to content

Commit 3e94e9d

Browse files
committed
no message
1 parent f184f3e commit 3e94e9d

File tree

25 files changed

+48
-45
lines changed

25 files changed

+48
-45
lines changed

app/controller/systemMember.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ public function add($user = false){
274274
}else{
275275
$userArray[] = $name;
276276
}
277-
$nickName = $name;
277+
$nickName = 0;
278278
if(isset($this->in['nickName'])){
279279
$nickName = trim(rawurldecode($this->in['nickName']));
280280
}
@@ -291,7 +291,7 @@ public function add($user = false){
291291
$userInfo = array(
292292
'userID' => $userID,
293293
'name' => $val,
294-
'nickName' => $nickName,
294+
'nickName' => $nickName ? $nickName : $val,
295295
'password' => md5($password),
296296
'role' => $this->in['role'],
297297
'config' => array('sizeMax' => floatval($this->in['sizeMax']),//M

app/controller/utils.php

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

plugins/toolsCommon/static/pie/.pie.tif

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

plugins/zipView/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id":"zipView",
33
"name":"{{LNG.Plugin.default.zipView}}",
44
"title":"",
5-
"version":"1.32",
5+
"version":"1.34",
66
"source":{
77
"icon":"{{pluginHost}}static/images/icon.png",
88
"screenshoot":[
@@ -34,7 +34,7 @@
3434
"type":"number",
3535
"display":"{{LNG.Plugin.Config.fileSort}}",
3636
"desc":"{{LNG.Plugin.Config.fileSortDesc}}",
37-
"value":10,
37+
"value":10
3838
}
3939
}
4040
}

plugins/zipView/static/page.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
define(function(require, exports) {
2+
if(!core.authCheck('explorer.fileDownload')){
3+
$(".context-menu-list .open-browser").remove();
4+
}
25
var menuAction = function(action,option){
36
//console.log(action,option);
47
var zip = function(fileType){

static/js/app/src/api/default/main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/js/app/src/api/view/main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/js/app/src/app/main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/js/app/src/desktop/main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/js/app/src/edit/main.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)