Skip to content

Commit

Permalink
Version 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Real-Gecko committed Jan 29, 2018
1 parent 6ccfa99 commit 97b272f
Show file tree
Hide file tree
Showing 14 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [2.1.1] - 2018-01-29
- Fix: simplify_path sub not used correct by [Denis Kanchev](https://github.com/Demayl)
- Fixed #135 (Error on pasting)

## [2.1.0] - 2016-10-20
- Added JSON::PP package to lib to avoid dependency issue with CentOS
- Fixed #119
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Works with every theme except Authentic.
* [**ffrewer**](https://github.com/ffrewer)
* [**SavageCore**](https://github.com/SavageCore)
* [**Piotr Kozica**](https://github.com/vipkoza)
* [Denis Kanchev](https://github.com/Demayl)

##Installation:
Package for installation through Webmin interface
Expand Down
Binary file removed distrib/filemin-2.1.0.cdn.linux.wbm.gz
Binary file not shown.
Binary file removed distrib/filemin-2.1.0.freebsd.wbm.gz
Binary file not shown.
Binary file removed distrib/filemin-2.1.0.linux.builtin.wbm.gz
Binary file not shown.
Binary file removed distrib/filemin-2.1.0.linux.wbm.gz
Binary file not shown.
Binary file added distrib/filemin-2.1.1.cdn.linux.wbm.gz
Binary file not shown.
Binary file added distrib/filemin-2.1.1.freebsd.wbm.gz
Binary file not shown.
Binary file added distrib/filemin-2.1.1.linux.builtin.wbm.gz
Binary file not shown.
Binary file added distrib/filemin-2.1.1.linux.wbm.gz
Binary file not shown.
Binary file added distrib/webmin-filemin_2.1.1_all.deb
Binary file not shown.
2 changes: 1 addition & 1 deletion module.info
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ desc=Filemin File Manager
os_support=*-linux freebsd
name=Filemin
longdesc=Fast and light file manager written in perl
version=2.1.0
version=2.1.1
webmin=1
usermin=1
longdesc_pl.UTF-8=Szybki i lekki menadżer plików napisany w perl
Expand Down
2 changes: 1 addition & 1 deletion paste.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if(open(my $fh, "<".&get_paste_buffer_file())) {
$arr[$i] =~ s/\.\.//g;
$arr[$i] = &simplify_path($arr[$i]);
my @p = split('/', $arr[$i]);
my $name = pop(\@p);
my $name = pop(@p);
my $suggested_name = suggest_filename($cwd, $name);
if ($act eq "copy") {
system("cp -r ".quotemeta($base.$arr[$i]).
Expand Down
2 changes: 1 addition & 1 deletion symlink.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if(open(my $fh, "<".&get_paste_buffer_file())) {
$arr[$i] =~ s/\.\.//g;
$arr[$i] = &simplify_path($arr[$i]);
my @p = split('/', $arr[$i]);
my $name = pop(\@p);
my $name = pop(@p);
if (-e "$cwd/$name") {
push @errors, "$cwd/$name $text{'error_exists'}";
} else {
Expand Down

0 comments on commit 97b272f

Please sign in to comment.