diff --git a/inc/html.php b/inc/html.php
index bf53111..2d79cf7 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -866,33 +866,33 @@ function adminBar() {
return $return;
}
- $output = '[' . __('Status') . '] [';
+ $output = '';
if ($isadmin) {
if ($account['role'] == TINYIB_SUPER_ADMINISTRATOR) {
- $output .= '' . __('Accounts') . '] [';
+ $output .= ' [' . __('Accounts') . ']';
+ }
+ $output .= ' [' . __('Bans') . ']';
+ $output .= ' [' . __('Keywords') . ']';
+ if (TINYIB_DBMIGRATE) {
+ $output .= ' [' . __('Migrate Database') . ']';
}
- $output .= '' . __('Bans') . '] [';
- $output .= '' . __('Keywords') . '] [';
}
- $output .= '' . __('Moderate Post') . '] [';
+ $output .= ' [' . __('Moderate Post') . ']';
if ($isadmin) {
- $output .= '' . __('Moderation Log') . '] [';
- }
- $output .= '' . __('Staff Post') . '] [';
- if ($isadmin) {
- $output .= '' . __('Rebuild All') . '] [';
+ $output .= ' [' . __('Moderation Log') . ']';
+ $output .= ' [' . __('Rebuild All') . ']';
if (TINYIB_REPORT) {
- $output .= '' . __('Reports') . '] [';
+ $output .= ' [' . __('Reports') . ']';
}
}
+ $output .= ' [' . __('Staff Post') . ']';
+ $output .= ' [' . __('Status') . ']';
if ($isadmin && installedViaGit()) {
- $output .= '' . __('Update') . '] [';
+ $output .= ' [' . __('Update') . ']';
}
- if ($isadmin && TINYIB_DBMIGRATE) {
- $output .= '' . __('Migrate Database') . '] [';
- }
- $output .= '' . __('Change password') . '] [';
- $output .= '' . __('Log Out') . '] · ' . $return;
+ $output .= ' · [' . __('Change Password') . ']';
+ $output .= ' [' . __('Log Out') . ']';
+ $output .= ' · ' . $return;
return $output;
}
@@ -1106,7 +1106,7 @@ EOF;
}
function manageChangePasswordForm() {
- $txt_header = __('Change password');
+ $txt_header = __('Change Password');
$txt_submit = __('Submit');
return <<