🎨 Remove hard-coded spaces in update timestamps
Signed-off-by: Luke Tainton <luke@tainton.uk>
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user