Skip to content
This repository was archived by the owner on Nov 15, 2024. It is now read-only.

Commit 9a7411f

Browse files
committed
fix
1 parent fd44c6a commit 9a7411f

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

changelog.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
Responsive Filemanager Changelog
22

3+
*********************************************************
4+
* RFM 9.11.3
5+
*********************************************************
6+
- fixed multiple security vulnerabilities (thanks to Wiswat Aswamenakul (Nick) from Netassess Consulting Co.,Ltd.)
7+
- url upload toggle
8+
- fixed upload xml
9+
- prettify improvement
10+
- added cad preview
11+
- other minor bug fixes
12+
313
*********************************************************
414
* RFM 9.11.0
515
*********************************************************

filemanager/dialog.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,9 @@
225225

226226
$return_relative_url = isset($_GET['relative_url']) && $_GET['relative_url'] == "1" ? true : false;
227227

228-
if (!isset($_GET['type'])) $_GET['type'] = 0;
228+
if (!isset($_GET['type'])){
229+
$_GET['type'] = 0;
230+
}
229231

230232
if($_GET['type']==1 || $_GET['type']==3){
231233
$filter='';

resources/assets/js/include.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var encodeURL,show_animation,hide_animation,apply,apply_none,apply_img,apply_any
33
{
44
"use strict";
55

6-
var version = "9.11.0";
6+
var version = "9.11.3";
77
var active_contextmenu = true;
88
var copy_count = 0;
99

@@ -683,7 +683,7 @@ var encodeURL,show_animation,hide_animation,apply,apply_none,apply_img,apply_any
683683
hide_animation();
684684
jQuery('#url').val('');
685685
}).fail(function(msg){
686-
alert(jQuery('#lang_error_upload').val());
686+
bootbox.alert(jQuery('#lang_error_upload').val());
687687
hide_animation();
688688
jQuery('#url').val('');
689689
});
@@ -786,7 +786,7 @@ var encodeURL,show_animation,hide_animation,apply,apply_none,apply_img,apply_any
786786
FileManager.makeContextMenu();
787787
}
788788

789-
if(typeof(Storage) !== "undefined") {
789+
if(typeof(Storage) !== "undefined" && $('#type_param').val()!=1 && $('#type_param').val()!=3 ) {
790790
var li = localStorage.getItem("sort");
791791
if(li){
792792
var liElement = jQuery('#'+li);

0 commit comments

Comments
 (0)