diff --git a/views/bootstrap/class.LogManagement.php b/views/bootstrap/class.LogManagement.php
index c09b43dd0..534129d31 100644
--- a/views/bootstrap/class.LogManagement.php
+++ b/views/bootstrap/class.LogManagement.php
@@ -42,7 +42,7 @@ class SeedDMS_View_LogManagement extends SeedDMS_Theme_Style {
print "
| \n";
print "".getMLText("name")." | \n";
print "".getMLText("creation_date")." | \n";
- print "".getMLText("file_size")." | \n";
+ print "".getMLText("file_size")." | \n";
print " | \n";
print "\n\n\n";
$print_header=false;
@@ -52,8 +52,8 @@ class SeedDMS_View_LogManagement extends SeedDMS_Theme_Style {
print " | \n";
print "".$entry." | \n";
print "\n";
- print "".getLongReadableDate(filectime($this->logdir.$entry))." | \n";
- print "".SeedDMS_Core_File::format_filesize(filesize($this->logdir.$entry))." | \n";
+ print "".getReadableDate(filectime($this->logdir.$entry))." | \n";
+ print "".SeedDMS_Core_File::format_filesize(filesize($this->logdir.$entry))." | \n";
print "";
print "".getMLText("rm_file")."";
@@ -66,17 +66,17 @@ class SeedDMS_View_LogManagement extends SeedDMS_Theme_Style {
}
if ($print_header) printMLText("empty_list");
- else print " | | |
\n";
+ else print " | |
\n";
} /* }}} */
function js() { /* {{{ */
header('Content-Type: application/javascript; charset=UTF-8');
?>
$(document).ready( function() {
- $('i.fa fa-arrow-up').on('click', function(e) {
+ $('#toggleall').on('click', function(e) {
//var checkBoxes = $("input[type=checkbox]");
//checkBoxes.prop("checked", !checkBoxes.prop("checked"));
- $('input[type=checkbox]').prop('checked', true);
+$("input[type=checkbox]").each(function () { this.checked = !this.checked; });
});
});