From aa4852be2023c2bd6cabbaadfadf93789e5d812a Mon Sep 17 00:00:00 2001
From: tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>
Date: Tue, 30 Oct 2007 21:16:19 +0000
Subject: Load the destination script after initiating a db connection.  Stops
 redirects to bin/ps.pl from blowing up.

git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1827 4979c152-3d1c-0410-bac9-87ea11338e46
---
 common.pl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/common.pl b/common.pl
index 5b7690b0..78d2b510 100644
--- a/common.pl
+++ b/common.pl
@@ -49,20 +49,20 @@ sub redirect {
 
     undef $form;
     $form = new Form($argv);
-    require "bin/$script";
 
     for (@common_attrs) {
         $form->{$_} = $temphash{$_};
     }
     $form->{script} = $script;
 
-    if ( !$myconfig ) {    # needed for login
+    if ( !%myconfig ) {    # needed for login
         %myconfig = %{ LedgerSMB::User->fetch_config( $form ) };
     }
     if ( !$form->{dbh} and ( $script ne 'admin.pl' ) ) {
         $form->db_init( \%myconfig );
     }
 
+    require "bin/$script";
     &{ $form->{action} };
 }
 
-- 
cgit v1.2.3