Skip to content

Commit 0b88917

Browse files
committed
v4.25 release last.
1 parent 7c53d60 commit 0b88917

File tree

38 files changed

+81
-73
lines changed

38 files changed

+81
-73
lines changed

app/controller/util.php

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

app/function/helper.function.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,17 @@ function checkExt($file){
66
return 0;
77
}
88
$notAllow = $GLOBALS['auth']['extNotAllow'];
9+
10+
//'php|phtml|phtm|pwml|asp|aspx|ascx|jsp|pl|htaccess|shtml|shtm'
911
if(strstr($notAllow,'php')){
10-
$notAllow .= '|htm|html|php|phtml|pwml|asp|aspx|ascx|jsp|pl|htaccess|shtml|shtm|phtm';
12+
$notAllow .= 'php|phtml|phtm|htaccess|pwml';
13+
}
14+
if( strstr($notAllow,'|htm') || strstr($notAllow,'htm|') ){
15+
$notAllow .= 'html|htm|shtml|shtm';
1116
}
17+
if( strstr($notAllow,'asp')){
18+
$notAllow .= 'asp|aspx|ascx|jsp|pl';
19+
}
1220
$extArr = explode('|',$notAllow);
1321
foreach ($extArr as $current) {
1422
if ($current !== '' && stristr($file,'.'.$current)){//含有扩展名

app/kod/.cache_data

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

app/template/desktop/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
</head>
77
<body style="overflow: hidden;" oncontextmenu="return core.contextmenu();" id="page-desktop">
8-
<?php echo '<style >.aero:before,.aero:after,.full-background{background-image:url('.$wall.')}</style>';?>
9-
<div class="full-background desktop"><img class="background" /></div>
8+
<?php echo '<style >.aero:before,.aero:after,.full-background-wall{background-image:url('.$wall.')}</style>';?>
9+
<div class="full-background-wall desktop"><img class="background" /></div>
1010

1111
<?php include(TEMPLATE.'common/navbar.html');?>
1212
<div class='bodymain drag-upload-box desktop'>

static/images/wall_page/5.jpg

-52.1 KB
Loading
4.14 KB
Loading

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

Lines changed: 1 addition & 1 deletion
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: 1 addition & 1 deletion
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: 1 addition & 1 deletion
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: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)