[Erp5-report] r28765 - /erp5/trunk/products/ERP5/Document/BusinessTemplate.py

nobody at svn.erp5.org nobody at svn.erp5.org
Thu Sep 3 10:18:23 CEST 2009


Author: romain
Date: Thu Sep  3 10:18:20 2009
New Revision: 28765

URL: http://svn.erp5.org?rev=28765&view=rev
Log:
Keep compatibility with business_template_registered_skin_selections property
saved as a string instead of tokens.

Modified:
    erp5/trunk/products/ERP5/Document/BusinessTemplate.py

Modified: erp5/trunk/products/ERP5/Document/BusinessTemplate.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/BusinessTemplate.py?rev=28765&r1=28764&r2=28765&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/BusinessTemplate.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/BusinessTemplate.py [utf8] Thu Sep  3 10:18:20 2009
@@ -196,6 +196,9 @@
                  )
   except AttributeError:
     skin_selection_list = skin_tool.getSkinSelections()
+
+  if isinstance(skin_selection_list, basestring):
+    skin_selection_list = skin_selection_list.split()
 
   for skin_name in skin_selection_list:
 




More information about the Erp5-report mailing list