summaryrefslogtreecommitdiff
path: root/LedgerSMB.pm
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-06-23 16:01:45 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-06-23 16:01:45 +0000
commit449cb9a83bf38fa84108d83d842a73731ee578fb (patch)
treeb17a7cc45ab772dd2e0dcc023ae5e3e3b2220f44 /LedgerSMB.pm
parenta51eb1d9032a2ef36cd185eabe0e3403241dbdad (diff)
Moving versioning string into the standard place for LedgerSMB.pm. If this works, we should consider doing the same for Form.pm
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1314 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'LedgerSMB.pm')
-rwxr-xr-xLedgerSMB.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/LedgerSMB.pm b/LedgerSMB.pm
index 3dc39447..c82caa0e 100755
--- a/LedgerSMB.pm
+++ b/LedgerSMB.pm
@@ -127,13 +127,14 @@ use LedgerSMB::User;
use strict;
package LedgerSMB;
+our $VERSION = '1.2.99';
sub new {
my $type = shift @_;
my $argstr = shift @_;
my $self = {};
- $self->{version} = "1.3.0 Alpha 0 Pre";
+ $self->{version} = $VERSION;
$self->{dbversion} = "1.2.0";
bless $self, $type;
my $query = ($argstr) ? new CGI($argstr) : new CGI;