From 186f09821a0df155ada0f3821126d0c0d4f561fd Mon Sep 17 00:00:00 2001
From: Andreas Fernandez <a.fernandez@scripting-base.de>
Date: Sat, 10 Oct 2015 08:23:05 +0200
Subject: [PATCH] [BUGFIX] SplitButtons.js must take CMD of BaseScriptClass
 into consideration

Modules may use the CMD attribute of BaseScriptClass to handle the save
actions. Adjust the selectors of SplitButtons.js to take these links
into consideration.

Resolves: #70562
Related: #70531
Releases: master
Change-Id: I06bce96e894080ca4a9bd36a761be588ec46e56c
Reviewed-on: http://review.typo3.org/43960
Reviewed-by: Michael Oehlhof <typo3@oehlhof.de>
Tested-by: Michael Oehlhof <typo3@oehlhof.de>
Reviewed-by: Markus Klein <markus.klein@typo3.org>
Tested-by: Markus Klein <markus.klein@typo3.org>
---
 .../backend/Resources/Public/JavaScript/SplitButtons.js   | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/typo3/sysext/backend/Resources/Public/JavaScript/SplitButtons.js b/typo3/sysext/backend/Resources/Public/JavaScript/SplitButtons.js
index 6781d1abb897..82c6bcace315 100644
--- a/typo3/sysext/backend/Resources/Public/JavaScript/SplitButtons.js
+++ b/typo3/sysext/backend/Resources/Public/JavaScript/SplitButtons.js
@@ -25,7 +25,13 @@ define('TYPO3/CMS/Backend/SplitButtons', ['jquery'], function($) {
 	 * Initializes the save handling
 	 */
 	SplitButtons.initializeSaveHandling = function() {
-		$(document).on('click', 'button[name^="_save"], a[data-name^="_save"]', function(e) {
+		var elements = [
+			'button[name^="_save"]',
+			'a[data-name^="_save"]',
+			'button[name="CMD"][value^="save"]',
+			'a[data-name="CMD"][data-value^="save"]'
+		].join(',');
+		$(document).on('click', elements, function(e) {
 			var $me = $(this),
 				$form = $me.closest('form'),
 				name = $me.data('name') || this.name,
-- 
GitLab