Actions
Bug #19259
closedIRRE function lockAjaxMethod locks even with lock parameter false
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2008-08-27
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.3
PHP Version:
4.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
If you call the IRRE method lockAjaxMethod with lock paramter=false, then it will still perform a lock. It should not lock the method in this case.
lockAjaxMethod: function(method, lock) {
if (!lock || !inline.lockedAjaxMethod[method]) {
inline.lockedAjaxMethod[method] = true;
return true;
} else {
return false;
}
},
(issue imported from #M9237)
Files
Actions