diff options
author | Thomas Lange <code@nerdmind.de> | 2017-11-02 05:49:38 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-11-02 05:49:38 +0100 |
commit | 42436de710d55693d54e9e8895db62858e07f435 (patch) | |
tree | fe38b6b05e71356e0aba93656a202e772bed19bf /template/admin/html/post | |
parent | 249b487a2c91dab5fbe1747080734407a8b0cb14 (diff) | |
download | blog-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')
-rw-r--r-- | template/admin/html/post/item.php | 2 |
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; ?> |