summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-09-15 04:21:33 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-09-15 04:21:33 +0000
commit508724f52e0025161ed3ae8b9f47c145e7c5c885 (patch)
tree1c1e91dd6cb879cd450663c66f69243e342e32ef
parentce331bd4b55cd92797c784fc08d3b6d7ec36e011 (diff)
Disabled editing sub-assemblies for the time being. Note that this only
disables editing them when directed from the assembly menu, not individually. We ought to look for a more graceful way of handling as we go forward. git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@94 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r--Changelog12
-rwxr-xr-xbin/mozilla/ic.pl1
2 files changed, 10 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index 1a526771..1ea4af54 100644
--- a/Changelog
+++ b/Changelog
@@ -1,14 +1,20 @@
Changelog for LedgerSMB 1.1.0
+Database
+* Primary Key added to acc_trans table
+* DB Updates now use one transaction per update file.
+* FLOAT datatypes removed from database
* Links between admin and login pages
+* Protection against duplicate transaction id's.
+
+Security
* One is required to change the admin password when it is blank (on first login etc).
+
+Usability
* Utility included for near-real-time parts short email notifications.
-* DB Updates now use one transaction per update file.
* Fixed Lynx support
* Batch printing now available for checks
* Warnings are printed when check stub is truncated
-* 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 with instructions on how to proceed manually
diff --git a/bin/mozilla/ic.pl b/bin/mozilla/ic.pl
index f689954f..57072274 100755
--- a/bin/mozilla/ic.pl
+++ b/bin/mozilla/ic.pl
@@ -767,6 +767,7 @@ sub form_footer {
$button{'Delete'} = { ndx => 16, key => 'D', value => $locale->text('Delete') };
}
}
+ %button = () if $form->{isassemblyitem} && $form->{item} eq 'assembly';
for (sort { $button{$a}->{ndx} <=> $button{$b}->{ndx} } keys %button) { $form->print_button(\%button, $_) }