summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-03-21 00:18:38 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-03-21 00:18:38 +0000
commit6a2b68a7a5ecd97a1e1ace6aaa5fdf7e9508028e (patch)
tree247ca4b1d8fa925142d2d2c6663c9ed8e7c1473b
parentc89cf3316e3296067eae5989d403c4a4015a6955 (diff)
added with no-user handling in User.pm
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@965 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r--LedgerSMB/Sysconfig.pm2
-rwxr-xr-xLedgerSMB/User.pm3
2 files changed, 4 insertions, 1 deletions
diff --git a/LedgerSMB/Sysconfig.pm b/LedgerSMB/Sysconfig.pm
index 2c66a75f..54370ab1 100644
--- a/LedgerSMB/Sysconfig.pm
+++ b/LedgerSMB/Sysconfig.pm
@@ -88,7 +88,7 @@ $spool = $config{paths}{spool} if $config{paths}{spool};
$templates = $config{paths}{templates} if $config{paths}{templates};
$tempdir = $config{paths}{tempdir} if $config{paths}{tempdir};
$userspath = ($config{paths}{userspath})
- ? $config($config{paths}{userspath}) : $tempdir;
+ ? $config{paths}{userspath} : $tempdir;
$gzip = $config{programs}{gzip} if $config{programs}{gzip};
$sendmail = $config{mail}{sendmail} if $config{mail}{sendmail};
diff --git a/LedgerSMB/User.pm b/LedgerSMB/User.pm
index 0d918640..3cf3e0e5 100755
--- a/LedgerSMB/User.pm
+++ b/LedgerSMB/User.pm
@@ -136,6 +136,9 @@ sub fetch_config {
$fetchUserPrefs->execute($login);
my $userHashRef = $fetchUserPrefs->fetchrow_hashref;
+ if (!$userHashRef) {
+ &error($self, "Access Denied");
+ }
while ( my ($key, $value) = each(%{$userHashRef}) ) {
$myconfig{$key} = $value;