- Issue created by @lakesta
- First commit to issue fork.
- Status changed to Needs review
about 1 year ago 6:55am 3 January 2024 - 🇮🇳India abhishek_virasat
@lakesta, I have fixed the issue, please kindly review the Patch file.
- Status changed to Needs work
about 1 year ago 1:39pm 4 January 2024 - According to
PHP coding standards →
should be used
const
instead ofdefine()
, so need to make this:
/** * The batch default size. */ const BATCH_SIZE = 50; ................................... ->range(0, self::BATCH_SIZE)
instead of
define("PROCESS_COMMIT_BATCH_SIZE", 50); ................................... ->range(0, PROCESS_COMMIT_BATCH_SIZE)
- If main code changed - unit tests should be improved too. For now i see warnings and errors with current MR:
https://git.drupalcode.org/issue/delete_entity_translations-3411374/-/pi...
- According to
PHP coding standards →
should be used
-
fromme →
committed ba45c612 on 1.0.x authored by
sidharth_soman →
Fixes for #3411374.
-
fromme →
committed ba45c612 on 1.0.x authored by
sidharth_soman →
- Status changed to Fixed
about 1 year ago 4:56pm 7 January 2024 Remove checking of translations in form.
Fix the bug with wrong starting point of batch.
Merged to release 1.0.3.Thanks everyone for participating in this issue!
Automatically closed - issue fixed for 2 weeks with no activity.