Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
trippo committed Feb 4, 2017
1 parent fd44c6a commit 9a7411f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
10 changes: 10 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
Responsive Filemanager Changelog

*********************************************************
* RFM 9.11.3
*********************************************************
- fixed multiple security vulnerabilities (thanks to Wiswat Aswamenakul (Nick) from Netassess Consulting Co.,Ltd.)
- url upload toggle
- fixed upload xml
- prettify improvement
- added cad preview
- other minor bug fixes

*********************************************************
* RFM 9.11.0
*********************************************************
Expand Down
4 changes: 3 additions & 1 deletion filemanager/dialog.php
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,9 @@

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

if (!isset($_GET['type'])) $_GET['type'] = 0;
if (!isset($_GET['type'])){
$_GET['type'] = 0;
}

if($_GET['type']==1 || $_GET['type']==3){
$filter='';
Expand Down
6 changes: 3 additions & 3 deletions resources/assets/js/include.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var encodeURL,show_animation,hide_animation,apply,apply_none,apply_img,apply_any
{
"use strict";

var version = "9.11.0";
var version = "9.11.3";
var active_contextmenu = true;
var copy_count = 0;

Expand Down Expand Up @@ -683,7 +683,7 @@ var encodeURL,show_animation,hide_animation,apply,apply_none,apply_img,apply_any
hide_animation();
jQuery('#url').val('');
}).fail(function(msg){
alert(jQuery('#lang_error_upload').val());
bootbox.alert(jQuery('#lang_error_upload').val());
hide_animation();
jQuery('#url').val('');
});
Expand Down Expand Up @@ -786,7 +786,7 @@ var encodeURL,show_animation,hide_animation,apply,apply_none,apply_img,apply_any
FileManager.makeContextMenu();
}

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

0 comments on commit 9a7411f

Please sign in to comment.