[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [1314] trunk/LedgerSMB.pm
- Subject: SF.net SVN: ledger-smb: [1314] trunk/LedgerSMB.pm
- From: ..hidden..
- Date: Sat, 23 Jun 2007 09:01:46 -0700
Revision: 1314
http://svn.sourceforge.net/ledger-smb/?rev=1314&view=rev
Author: einhverfr
Date: 2007-06-23 09:01:45 -0700 (Sat, 23 Jun 2007)
Log Message:
-----------
Moving versioning string into the standard place for LedgerSMB.pm. If this works, we should consider doing the same for Form.pm
Modified Paths:
--------------
trunk/LedgerSMB.pm
Modified: trunk/LedgerSMB.pm
===================================================================
--- trunk/LedgerSMB.pm 2007-06-23 15:05:53 UTC (rev 1313)
+++ trunk/LedgerSMB.pm 2007-06-23 16:01:45 UTC (rev 1314)
@@ -127,13 +127,14 @@
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;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.