[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[4065] branches/1.3



Revision: 4065
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=4065&view=rev
Author:   einhverfr
Date:     2011-11-25 01:42:29 +0000 (Fri, 25 Nov 2011)
Log Message:
-----------
Updating changelog and commenting sql/modules/Fixes.sql change

Modified Paths:
--------------
    branches/1.3/Changelog
    branches/1.3/sql/modules/Fixes.sql

Modified: branches/1.3/Changelog
===================================================================
--- branches/1.3/Changelog	2011-11-25 01:40:25 UTC (rev 4064)
+++ branches/1.3/Changelog	2011-11-25 01:42:29 UTC (rev 4065)
@@ -14,6 +14,7 @@
 * Correcting errors attaching and retriving URL attachments (Chris T)
 * Correcting history.css not found (Chris T)
 * Correcting parse errors in pos_template.txt (Chris T)
+* Corrected Action not defined error on asset import (Chris T)
 
 Changelog for LedgerSMB 1.3.6
 * Including xelatex templates under directory templates/xedemo (Chris T)

Modified: branches/1.3/sql/modules/Fixes.sql
===================================================================
--- branches/1.3/sql/modules/Fixes.sql	2011-11-25 01:40:25 UTC (rev 4064)
+++ branches/1.3/sql/modules/Fixes.sql	2011-11-25 01:42:29 UTC (rev 4065)
@@ -24,7 +24,10 @@
 UPDATE menu_attribute SET value = 'partsgroup' WHERE node_id = 91 and attribute = 'type';
 UPDATE menu_attribute SET value = 'pricegroup' WHERE node_id = 92 and attribute = 'type';
 
-UPDATE menu_attribute SET value = 'begin_import' WHERE id = 631 and value = 'import' and node_id = '235';
+-- Very restrictive because some people still have Asset handling installed from
+-- Addons and so the node_id and id values may not match.  Don't want to break
+-- what is working! --CT
+UPDATE menu_attribute SET value = 'begin_import' WHERE id = 631 and value = 'import' and node_id = '235'; 
 
 COMMIT;
 

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.