🎨 Remove hard-coded spaces in update timestamps

Signed-off-by: Luke Tainton <luke@tainton.uk>
This commit is contained in:
2020-08-10 21:41:54 +01:00
parent e22fabea1d
commit f23dc99744
3 changed files with 5 additions and 4 deletions

View File

@@ -102,7 +102,7 @@
<div class="container">
<div class="row">
<span class="requestinfo"><b><?php echo(get_user_name($db, $update['user'])); ?></b></span>
<span class="text-muted"><i><?php echo(" " . $update['created']); ?></i></span>
<span class="requestinfo-spaced text-muted"><i><?php echo($update['created']); ?></i></span>
</div>
<div class="row">
<span><?php echo(filter_var($update['msg'], FILTER_SANITIZE_STRING)); ?></span>

View File

@@ -101,7 +101,8 @@
<li class="list-group-item">
<div class="container">
<div class="row">
<span class="requestinfo"><b><?php echo(get_user_name($db, $update['user'])); ?></b></span><span class="text-muted"><i><?php echo(" " . $update['created']); ?></i></span>
<span class="requestinfo"><b><?php echo(get_user_name($db, $update['user'])); ?></b></span>
<span class="requestinfo-spaced text-muted"><i><?php echo($update['created']); ?></i></span>
</div>
<div class="row">
<span><?php echo(filter_var($update['msg'], FILTER_SANITIZE_STRING)); ?></span>

View File

@@ -153,7 +153,7 @@
<div class="container">
<div class="row">
<span class="requestinfo"><b><?php echo(get_user_name($db, $file['user'])); ?></b></span>
<span class="requestinfo requestinfo-spaced text-muted"><i> <?php echo(" " . $file['created']); ?></i></span>
<span class="requestinfo requestinfo-spaced text-muted"><i> <?php echo($file['created']); ?></i></span>
</div>
<div class="row">
<a target="_blank" href="<?php echo('/actions/download?file=' . $file['id']); ?>"><span><?php echo($file['filename']); ?></span></a>
@@ -179,7 +179,7 @@
<div class="container">
<div class="row">
<span class="requestinfo"><b><?php echo(get_user_name($db, $update['user'])); ?></b></span>
<span class="requestinfo requestinfo-spaced text-muted"><i> <?php echo(" " . $update['created']); ?></i></span>
<span class="requestinfo requestinfo-spaced text-muted"><i> <?php echo($update['created']); ?></i></span>
</div>
<div class="row">
<span><?php echo(filter_var($update['msg'], FILTER_SANITIZE_STRING)); ?></span>