aboutsummaryrefslogtreecommitdiffstats
path: root/template/admin/html/post/item.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-11-02 05:49:38 +0100
committerThomas Lange <code@nerdmind.de>2017-11-02 05:49:38 +0100
commit42436de710d55693d54e9e8895db62858e07f435 (patch)
treefe38b6b05e71356e0aba93656a202e772bed19bf /template/admin/html/post/item.php
parent249b487a2c91dab5fbe1747080734407a8b0cb14 (diff)
downloadblog-42436de710d55693d54e9e8895db62858e07f435.tar.gz
blog-42436de710d55693d54e9e8895db62858e07f435.tar.xz
blog-42436de710d55693d54e9e8895db62858e07f435.zip
The colon characters for the key-value arguments were moved directly into the <strong> tags. A CSS optimization was additionally made.
Diffstat (limited to 'template/admin/html/post/item.php')
-rw-r--r--template/admin/html/post/item.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/admin/html/post/item.php b/template/admin/html/post/item.php
index 83a1d35..e81513a 100644
--- a/template/admin/html/post/item.php
+++ b/template/admin/html/post/item.php
@@ -14,7 +14,7 @@
<?php if($POST['ARGV']): ?>
<ul class="arguments">
<?php foreach($POST['ARGV'] as $argument => $value): ?>
- <li><strong><?=$argument?></strong>: <span class="blue"><?=escapeHTML($value)?></span></li>
+ <li><strong><?=$argument?>:</strong> <span><?=escapeHTML($value)?></span></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>