aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xweb/api/read/oplog2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/api/read/oplog b/web/api/read/oplog
index f2ed3a7..88a7616 100755
--- a/web/api/read/oplog
+++ b/web/api/read/oplog
@@ -25,7 +25,7 @@ while (my $ref = $query->fetchrow_hashref()) {
$meh{'timestamp'} = $ref->{'timestamp'};
$meh{'timestamp'} =~ s/ /T/;
$meh{'timestamp'} =~ s/\+00$/Z/;
- $meh{'timestamp'} =~ s/\+(\d\d)$/+\1:00/;
+ $meh{'timestamp'} =~ s/\+(\d\d)$/+$1:00/;
push @{$nms::web::json{'oplog'}},\%meh;
}