Skip to content

Commit

Permalink
v4.25 release last.
Browse files Browse the repository at this point in the history
  • Loading branch information
kalcaddle committed Dec 4, 2017
1 parent 7c53d60 commit 0b88917
Show file tree
Hide file tree
Showing 38 changed files with 81 additions and 73 deletions.
4 changes: 2 additions & 2 deletions app/controller/util.php

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion app/function/helper.function.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,17 @@ function checkExt($file){
return 0;
}
$notAllow = $GLOBALS['auth']['extNotAllow'];

//'php|phtml|phtm|pwml|asp|aspx|ascx|jsp|pl|htaccess|shtml|shtm'
if(strstr($notAllow,'php')){
$notAllow .= '|htm|html|php|phtml|pwml|asp|aspx|ascx|jsp|pl|htaccess|shtml|shtm|phtm';
$notAllow .= 'php|phtml|phtm|htaccess|pwml';
}
if( strstr($notAllow,'|htm') || strstr($notAllow,'htm|') ){
$notAllow .= 'html|htm|shtml|shtm';
}
if( strstr($notAllow,'asp')){
$notAllow .= 'asp|aspx|ascx|jsp|pl';
}
$extArr = explode('|',$notAllow);
foreach ($extArr as $current) {
if ($current !== '' && stristr($file,'.'.$current)){//含有扩展名
Expand Down
4 changes: 2 additions & 2 deletions app/kod/.cache_data

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions app/template/desktop/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

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

<?php include(TEMPLATE.'common/navbar.html');?>
<div class='bodymain drag-upload-box desktop'>
Expand Down
Binary file modified static/images/wall_page/5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/images/wall_page/thumb/5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion static/js/app/src/api/default/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/js/app/src/api/view/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/js/app/src/app/main.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions static/js/app/src/desktop/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/js/app/src/edit/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/js/app/src/editor/main.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 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.

2 changes: 1 addition & 1 deletion static/js/app/src/plugins/tpl/main.js

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

2 changes: 1 addition & 1 deletion static/js/app/src/setting/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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.

2 changes: 1 addition & 1 deletion static/js/app/src/shareIndex/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/js/app/src/user/main.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions static/style/skin/alpha_image.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions static/style/skin/alpha_image_sky.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions static/style/skin/alpha_image_sun.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions static/style/skin/base/app_code_edit.css

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions static/style/skin/base/app_editor.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions static/style/skin/base/app_explorer.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions static/style/skin/base/app_setting.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions static/style/skin/diy.css

Large diffs are not rendered by default.

Loading

0 comments on commit 0b88917

Please sign in to comment.