diff --git a/core/core.php b/core/core.php index ba6398f2..4dbdd55e 100644 --- a/core/core.php +++ b/core/core.php @@ -36,7 +36,7 @@ class common { const THUMBS_SEPARATOR = 'mini_'; // Numéro de version - const ZWII_VERSION = '10.0.055'; + const ZWII_VERSION = '10.0.056'; const ZWII_UPDATE_CHANNEL = "v10"; public static $actions = []; diff --git a/module/gallery/view/config/config.js.php b/module/gallery/view/config/config.js.php index 1957247c..3e4229eb 100644 --- a/module/gallery/view/config/config.js.php +++ b/module/gallery/view/config/config.js.php @@ -25,9 +25,11 @@ $( document ).ready(function() { }); // Activer le bouton de tri uniquement après un tri -$("#galleryTable").mouseup(function(e) { +$("#galleryTable").click(function(e) { e.preventDefault(); - $(":input[type='submit']").prop('disabled', false); + if ($("#galleryConfigFilterResponse").val() != "") { + $(":input[type='submit']").prop('disabled', false); + } }); /**