diff options
Diffstat (limited to 'theme/admin/html')
-rw-r--r-- | theme/admin/html/database.php | 2 | ||||
-rw-r--r-- | theme/admin/html/page/item.php | 2 | ||||
-rw-r--r-- | theme/admin/html/post/item.php | 2 | ||||
-rw-r--r-- | theme/admin/html/user/delete.php | 2 | ||||
-rw-r--r-- | theme/admin/html/user/item.php | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/theme/admin/html/database.php b/theme/admin/html/database.php index da41e68..cdc9b31 100644 --- a/theme/admin/html/database.php +++ b/theme/admin/html/database.php @@ -21,7 +21,7 @@ <?php if($FORM['RESULT']): ?> <div class="form-border-box background padding"> - <pre id="database-result"><?=escapeHTML($FORM['RESULT'])?></pre> + <pre><?=escapeHTML($FORM['RESULT'])?></pre> </div> <?php endif; ?> diff --git a/theme/admin/html/page/item.php b/theme/admin/html/page/item.php index d0bf2d7..018286e 100644 --- a/theme/admin/html/page/item.php +++ b/theme/admin/html/page/item.php @@ -25,7 +25,7 @@ <?php if($PAGE['ARGV']): ?> <ul class="arguments"> <?php foreach($PAGE['ARGV'] as $argument => $value): ?> - <li><strong><?=$argument?>:</strong> <span><?=escapeHTML($value)?></span></li> + <li><strong><?=$argument?>:</strong> <code><?=escapeHTML($value)?></code></li> <?php endforeach; ?> </ul> <?php endif; ?> diff --git a/theme/admin/html/post/item.php b/theme/admin/html/post/item.php index 6fcbcad..5261bdb 100644 --- a/theme/admin/html/post/item.php +++ b/theme/admin/html/post/item.php @@ -31,7 +31,7 @@ <?php if($POST['ARGV']): ?> <ul class="arguments"> <?php foreach($POST['ARGV'] as $argument => $value): ?> - <li><strong><?=$argument?>:</strong> <span><?=escapeHTML($value)?></span></li> + <li><strong><?=$argument?>:</strong> <code><?=escapeHTML($value)?></code></li> <?php endforeach; ?> </ul> <?php endif; ?> diff --git a/theme/admin/html/user/delete.php b/theme/admin/html/user/delete.php index b500a12..16e11b5 100644 --- a/theme/admin/html/user/delete.php +++ b/theme/admin/html/user/delete.php @@ -2,7 +2,7 @@ <h1><i class="fa fa-trash-o"></i><?=$Language->text('delete_user')?></h1> <p><?=$Language->text('delete_user_desc')?></p> -<p class="red"><?=$Language->text('delete_user_warning')?></p> +<p class="warning"><?=$Language->text('delete_user_warning')?></p> <?=$HTML?> </main> diff --git a/theme/admin/html/user/item.php b/theme/admin/html/user/item.php index e65b033..9a5a83e 100644 --- a/theme/admin/html/user/item.php +++ b/theme/admin/html/user/item.php @@ -29,7 +29,7 @@ <?php if($USER['ARGV']): ?> <ul class="arguments"> <?php foreach($USER['ARGV'] as $argument => $value): ?> - <li><strong><?=$argument?>:</strong> <span><?=escapeHTML($value)?></span></li> + <li><strong><?=$argument?>:</strong> <code><?=escapeHTML($value)?></code></li> <?php endforeach; ?> </ul> <?php endif; ?> |