diff options
-rw-r--r-- | INSTALL | 4 | ||||
-rwxr-xr-x | LedgerSMB/Menu.pm | 8 |
2 files changed, 9 insertions, 3 deletions
@@ -143,10 +143,10 @@ Likely causes: After the creation of user accounts, the commant to reset the admin password is: - UPDATE users_conf SET password=mp5('password') WHERE id = + UPDATE users_conf SET password=mp5('MYPASSWORD') WHERE id = (select id FROM user WHERE username = 'admin'); - Of course, substitute 'password' for your chosen password. + Of course, substitute 'MYPASSWORD' for your chosen password. 2) The central database may have been created with a different user than you are using for the connection and you may not have permission to access the diff --git a/LedgerSMB/Menu.pm b/LedgerSMB/Menu.pm index 344bb7d7..d6ce2053 100755 --- a/LedgerSMB/Menu.pm +++ b/LedgerSMB/Menu.pm @@ -48,7 +48,13 @@ sub menuitem { ? $self->{$item}{target} : ""; my $level = $form->escape($item); - my $str = qq|<a style="display:block;"|. + my $style; + if ($form->{menubar}){ + $style = ""; + } else { + $style = "display:block;"; + } + my $str = qq|<a style="$style"|. qq|href="$module?path=$form->{path}&action=$action&|. qq|level=$level&login=$form->{login}&|. qq|timeout=$form->{timeout}&sessionid=$form->{sessionid}|. |