[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [92] trunk
- Subject: SF.net SVN: ledger-smb: [92] trunk
- From: ..hidden..
- Date: Thu, 14 Sep 2006 08:19:43 -0700
Revision: 92
http://svn.sourceforge.net/ledger-smb/?rev=92&view=rev
Author: einhverfr
Date: 2006-09-14 08:19:39 -0700 (Thu, 14 Sep 2006)
Log Message:
-----------
Whitespace cleanup to SL2LS.pl
Modified Paths:
--------------
trunk/Changelog
trunk/SL2LS.pl
Modified: trunk/Changelog
===================================================================
--- trunk/Changelog 2006-09-14 15:07:13 UTC (rev 91)
+++ trunk/Changelog 2006-09-14 15:19:39 UTC (rev 92)
@@ -1,5 +1,7 @@
Changelog for LedgerSMB 1.1.0
+* Links between admin and login pages
+* One is required to change the admin password when it is blank (on first login etc).
* Utility included for near-real-time parts short email notifications.
* DB Updates now use one transaction per update file.
* Fixed Lynx support
@@ -8,8 +10,7 @@
* Protection against duplicate transaction id's.
* FLOAT datatypes removed from database
* Sales Data Report added
-* SL2LS.pl now dies if it cannot open the files.
-* Corrected directory transversal bug
+* SL2LS.pl now dies if it cannot open the files with instructions on how to proceed manually
Changelog for LedgerSMB v 1.0.0p1
* Fixed directory transversal/arbitrary code execution vulnerability.
Modified: trunk/SL2LS.pl
===================================================================
--- trunk/SL2LS.pl 2006-09-14 15:07:13 UTC (rev 91)
+++ trunk/SL2LS.pl 2006-09-14 15:19:39 UTC (rev 92)
@@ -5,13 +5,13 @@
# Simple script. Right now, all that needs to be done is that the SL directory
# needs to be deleted and the sql-ledger.conf needs to be renamed.
-$filedie = "To install manually:
-rename the sql-ledger.conf to ledger-smb.conf
-Delete the SL directory (optional but HIGHLY recommended)\n";
+$filedie = "To install manually:\n" .
+ "rename the sql-ledger.conf to ledger-smb.conf\n ".
+ "Delete the SL directory (optional but HIGHLY recommended)\n";
open (SL, "< sql-ledger.conf") || die (
-"Could not open sql-ledger.conf: $! \n $filedie");
+ "Could not open sql-ledger.conf: $! \n $filedie");
open (LS, "> ledger-smb.conf") || die (
-"Could not open ledger-smb.conf: $! \n $filedie");
+ "Could not open ledger-smb.conf: $! \n $filedie");
while ($line = <SL>){
print LS $line;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.