Actions
Bug #44229
closedScheduler do not respect field names with name space
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Authentication
Target version:
-
Start date:
2012-12-27
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.0
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Hi,
Schedulertask "Convert user passwords to salted hashes (saltedpasswords)" has an additional Field, labeld "The number of records to process on each run".
Since the fieldname is:
$fieldName = 'TYPO3\\CMS\\Scheduler\\Scheduler[scheduler_saltedpasswordsBulkUpdateNumberOfRecords]';
the validation of this field returns FALSE, because &$submittedData in the method "validateAdditionalFields" does not include that data.
When you change it to:
$fieldName = 'tx_scheduler[scheduler_saltedpasswordsBulkUpdateNumberOfRecords]';
it will work as you expect.
files is: typo3/sysext/saltedpasswords/Classes/Task/BulkUpdateFieldProvider.php
I think this affect the hole Scheduler.
best,
Michael
Actions