]> git.koha-community.org Git - koha.git/commit
Bug 36277: Avoid useless warnings
authorTomas Cohen Arazi <tomascohen@theke.io>
Fri, 15 Mar 2024 12:05:55 +0000 (09:05 -0300)
committerLucas Gass <lucas@bywatersolutions.com>
Tue, 19 Mar 2024 21:50:13 +0000 (21:50 +0000)
commit6cccf8f210b3fdf195d78185ea82b3504443880a
tree644d5043c0b9cd359c7412e0434a7df4072d9923
parent667e67555058c20bc50ec9d31f895b920dde2c1f
Bug 36277: Avoid useless warnings

As mentioned on bug 36329, this endpoint is only used with one of this
parameters:

* item_type
* collection_code

The other will be NULL both on the DB and the (deserialized) request
body. For the data from the DB, the author added `|| q{}` but missed to
do so on the incoming parameters when generates the hash key.

This generates the following warnings when using from the UI:

[2024/03/15 11:42:51] [WARN] Use of uninitialized value in sprintf at /kohadevbox/koha/Koha/REST/V1/TransferLimits.pm line 146.

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
(cherry picked from commit 03b0f31b9e63ce314c333ac6ffd68587a609e587)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
(cherry picked from commit fa2e164f240a9e040c0e044c39dac6c613cb7b27)
Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
Koha/REST/V1/TransferLimits.pm