Commit ccb16fb5 authored by Łukasz Nowak's avatar Łukasz Nowak

- enable preference only if disabled


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@28062 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 78bb0800
......@@ -63,7 +63,8 @@ pref = getattr(context.portal_preferences, "erp5_ui_test_preference", None)\n
if pref is None:\n
pref = context.portal_preferences.newContent(id="erp5_ui_test_preference", portal_type="Preference")\n
pref.setPreferredSubversionWorkingCopyList(tuple(working_copy_list.split(\',\')))\n
pref.enable()\n
if pref.getPreferenceState() == \'disabled\':\n
pref.enable()\n
\n
return \'Set Preference Successfully.\'\n
</string> </value>
......
442
\ No newline at end of file
443
\ No newline at end of file
......@@ -63,7 +63,8 @@ pref = getattr(context.portal_preferences, "erp5_ui_test_preference", None)\n
if pref is None:\n
pref = context.portal_preferences.newContent(id="erp5_ui_test_preference", portal_type="Preference")\n
pref.setPreferredSubversionWorkingCopyList(tuple(working_copy_list.split(\',\')))\n
pref.enable()\n
if pref.getPreferenceState() == \'disabled\':\n
pref.enable()\n
\n
return \'Set Preference Successfully.\'\n
</string> </value>
......
11
\ No newline at end of file
12
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment