[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[2432] branches/1.2
- Subject: SF.net SVN: ledger-smb:[2432] branches/1.2
- From: ..hidden..
- Date: Thu, 18 Dec 2008 19:10:14 +0000
Revision: 2432
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=2432&view=rev
Author: einhverfr
Date: 2008-12-18 19:10:14 +0000 (Thu, 18 Dec 2008)
Log Message:
-----------
Correcting repeat-run issues with template generation (2379919)
Modified Paths:
--------------
branches/1.2/LedgerSMB/Form.pm
branches/1.2/css/ledger-smb.css
Modified: branches/1.2/LedgerSMB/Form.pm
===================================================================
--- branches/1.2/LedgerSMB/Form.pm 2008-12-11 22:11:23 UTC (rev 2431)
+++ branches/1.2/LedgerSMB/Form.pm 2008-12-18 19:10:14 UTC (rev 2432)
@@ -1263,7 +1263,6 @@
sub cleanup {
- return;
my $self = shift;
chdir("$self->{tmpdir}");
@@ -1283,7 +1282,7 @@
unlink(<$tmpfile.*>);
}
- chdir("$self->{cwd}");
+ chdir("$self->{cwd}") if defined $self->{cwd};
"@err";
}
Modified: branches/1.2/css/ledger-smb.css
===================================================================
--- branches/1.2/css/ledger-smb.css 2008-12-11 22:11:23 UTC (rev 2431)
+++ branches/1.2/css/ledger-smb.css 2008-12-18 19:10:14 UTC (rev 2432)
@@ -4,7 +4,7 @@
A:link { text-decoration: none; }
A:visited {text-decoration: none; }
A:active { text-decoration: underline; }
-A:hover { color: transparent;
+A:hover {
background-color: transparent;
text-decoration: none;
}
@@ -133,7 +133,7 @@
.listtop { font-size: 10pt; background-color: black; color: white; }
.listheading { font-size: 10pt; background-color: #004a80; color: white; }
A.listheading:link, A.listheading:active, A.listheading:visited {
- color: transparent;
+ color: white;
text-decoration: none; }
.listrow1 { font-size: 10pt; background-color: #e6e6fa; color: black; vertical-align: top; }
.listrow0 { font-size: 10pt; background-color: #ffe4e1; color: black; vertical-align: top; }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.