We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 089bbb5 commit 0b780e5Copy full SHA for 0b780e5
www/app/php/utils/Utils.php
@@ -131,7 +131,7 @@ public static function areAllValuesEmpty($object, array $values)
131
*/
132
public static function isSearchAndConvertRequest($object)
133
{
134
- return isset($object['z3950_value']);
+ return isset($object['z3950_value']) && ($object['z3950_value'] != '');
135
}
136
137
/**
@@ -140,7 +140,7 @@ public static function isSearchAndConvertRequest($object)
140
141
public static function isImportToKohaRequest($object)
142
143
- return isset($object['koha_intra_value']);
+ return isset($object['koha_intra_value']) && ($object['koha_intra_value'] != '');
144
145
146
0 commit comments