]> git.koha-community.org Git - koha.git/commit
Bug 37429: Set default value for global variables
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 15 Aug 2024 10:21:10 +0000 (12:21 +0200)
committerKatrin Fischer <katrin.fischer@bsz-bw.de>
Fri, 16 Aug 2024 15:33:45 +0000 (17:33 +0200)
commit8aced236e9360ea6186e0d4c79d77ecd272bdc09
tree5551b73dd82487b87cdbe9bcee0ca1c31f00ec70
parent0f255728c5101fbc90a1e18f3d6fdda96ed0182a
Bug 37429: Set default value for global variables

The global variables needs to be assigned with a default value, or the
value from the previous request will be used.

Global variables are persistent from one request to another, in memory.

This patch:
* groups default value for global variables together
* removes $authorised_values_sth from this list (it is not a global var)
* set $changed_framework to 0 (which fix the issue)

Test plan:
1. Open an existing biblio (detail.pl)
2. Click "Edit record"
3. Change the framework (no need to change any details)
4. Change the framework back to the original one (no need to save anything)
5. Go back to the biblio overview page (detail.pl)
=> The form is populated

Signed-off-by: Paul Derscheid <paul.derscheid@lmscloud.de>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
cataloguing/addbiblio.pl