diff options
Diffstat (limited to 'LedgerSMB/Session.pm')
-rwxr-xr-x | LedgerSMB/Session.pm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/LedgerSMB/Session.pm b/LedgerSMB/Session.pm index 76ed27ce..dbc2d1c3 100755 --- a/LedgerSMB/Session.pm +++ b/LedgerSMB/Session.pm @@ -1,13 +1,13 @@ #===================================================================== -# LedgerSMB +# LedgerSMB # Small Medium Business Accounting software # http://www.ledgersmb.org/ -# +# # # Copyright (C) 2006 # This work contains copyrighted information from a number of sources all used -# with permission. It is released under the GNU General Public License -# Version 2 or, at your option, any later version. See COPYRIGHT file for +# with permission. It is released under the GNU General Public License +# Version 2 or, at your option, any later version. See COPYRIGHT file for # details. # This is a simple abstraction layer allowing other session handling mechanisms @@ -16,8 +16,8 @@ package Session; use LedgerSMB::Sysconfig; -if (!${LedgerSMB::Sysconfig::session}){ - ${LedgerSMB::Sysconfig::session} = 'DB'; +if ( !${LedgerSMB::Sysconfig::session} ) { + ${LedgerSMB::Sysconfig::session} = 'DB'; } -require "LedgerSMB/Session/".${LedgerSMB::Sysconfig::session}.".pm"; +require "LedgerSMB/Session/" . ${LedgerSMB::Sysconfig::session} . ".pm"; |