diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-11-24 19:22:57 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-02-19 14:45:55 +0100 |
commit | 726af84e81efe01da2dc3064b2278d79f3da4f6f (patch) | |
tree | 8a346bf55bef5c52c22b684d6f7c1f1931612b19 | |
parent | 0916329772b8c44c1b216a7355238c5840ade161 (diff) | |
download | Ishtar-726af84e81efe01da2dc3064b2278d79f3da4f6f.tar.bz2 Ishtar-726af84e81efe01da2dc3064b2278d79f3da4f6f.zip |
🐛 fix bad evaluation on wizard for "own" permissions
-rw-r--r-- | ishtar_common/wizards.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index e6cda14cf..030b684ad 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -154,7 +154,7 @@ class Wizard(IshtarWizard): label = "" translated_keys = [] modification = None # True when the wizard modify an item - deletion = True # True on deletion + deletion = None # True on deletion storage_name = "formtools.wizard.storage.session.SessionStorage" wizard_done_template = "ishtar/wizard/wizard_done.html" wizard_done_window = "" |