From e3a612df5e53adb76632fa1e9b32770e83bf8eff Mon Sep 17 00:00:00 2001 From: pcanterino <> Date: Tue, 12 May 2009 19:22:27 +0000 Subject: [PATCH] Changed version number to 3.1 --- devedit.pl | 4 ++-- modules/Command.pm | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/devedit.pl b/devedit.pl index f7b2818..87afee4 100644 --- a/devedit.pl +++ b/devedit.pl @@ -1,7 +1,7 @@ #!C:/Programme/Perl/bin/perl.exe -w # -# Dev-Editor 3.0.1 +# Dev-Editor 3.1 # # Dev-Editor's main program # @@ -30,7 +30,7 @@ use Command; use Output; use Tool; -$VERSION = '3.0.1'; +$VERSION = '3.1'; # Path to configuration file # Change if necessary! diff --git a/modules/Command.pm b/modules/Command.pm index c1b8989..cc996ca 100644 --- a/modules/Command.pm +++ b/modules/Command.pm @@ -948,7 +948,7 @@ sub exec_remove_multi($$) $tpl->add_loop_data('SUCCESS',{FILE => encode_html($file_success), FILE_PATH => encode_html(clean_path($virtual.'/'.$file_success))}); } - + $tpl->parse_loop('SUCCESS'); } } @@ -960,13 +960,13 @@ sub exec_remove_multi($$) if(scalar(@failed) > 0) { $tpl->parse_if_block('failed',1); - + foreach my $file_failed(@failed) { $tpl->add_loop_data('FAILED',{FILE => encode_html($file_failed), FILE_PATH => encode_html(clean_path($virtual.'/'.$file_failed))}); } - + $tpl->parse_loop('FAILED'); } else @@ -993,7 +993,7 @@ sub exec_remove_multi($$) $tpl->add_loop_data('FILES',{FILE => encode_html($file), FILE_PATH => encode_html(clean_path($virtual.'/'.$file))}); } - + $tpl->parse_loop('FILES'); $tpl->fillin('COUNT',scalar(@new_files)); -- 2.34.1