diff options
Diffstat (limited to 'template/admin/html')
-rw-r--r-- | template/admin/html/page/item.php | 2 | ||||
-rw-r--r-- | template/admin/html/post/item.php | 2 | ||||
-rw-r--r-- | template/admin/html/user/item.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/template/admin/html/page/item.php b/template/admin/html/page/item.php index fa251cb..e7032f0 100644 --- a/template/admin/html/page/item.php +++ b/template/admin/html/page/item.php @@ -14,7 +14,7 @@ <?php if($PAGE['ARGV']): ?> <ul class="arguments"> <?php foreach($PAGE['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; ?> 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; ?> diff --git a/template/admin/html/user/item.php b/template/admin/html/user/item.php index 62e2c60..d8e43cf 100644 --- a/template/admin/html/user/item.php +++ b/template/admin/html/user/item.php @@ -13,7 +13,7 @@ <?php if($USER['ARGV']): ?> <ul class="arguments"> <?php foreach($USER['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; ?> |