- Issue created by @longwave
- Status changed to Needs review
over 1 year ago 8:45am 24 July 2023 - last update
over 1 year ago Custom Commands Failed - Status changed to Needs work
over 1 year ago 8:49am 24 July 2023 - 🇬🇧United Kingdom longwave UK
Thanks for working on this!
+++ b/core/modules/file/tests/src/Functional/FileFieldWidgetTest.php @@ -299,7 +299,7 @@ public function testPrivateFileComment() { - $name = strtolower($this->randomMachineName()); + $field_name = $this->randomMachineName();
The variable name here is changed incorrectly and causes the tests to fail.
- last update
over 1 year ago 29,877 pass - Status changed to Needs review
over 1 year ago 11:56am 24 July 2023 - Status changed to Needs work
over 1 year ago 4:39pm 24 July 2023 - 🇺🇸United States smustgrave
Applied the patch and searched for = strtolower($this->randomMachineName() and still found 27 instances
Not sure if we want to cover mb_strtolower too here.
- 🇬🇧United Kingdom longwave UK
Yes let's remove the multibyte versions here as well, no need to do them separately imho.
- 🇮🇳India indrapatil Bangalore
Yes, i agree with @smustgrave there were 27 changes there I fixed them and I go through @longwave #10 I worked for Multibyte also But I am not sure weather to include them in a single patch. please guide me if any changes are required in my patch.
- 🇬🇧United Kingdom longwave UK
+++ b/core/lib/Drupal/Component/Utility/Html.php @@ -71,7 +71,7 @@ class Html { - static::$classes[$class] = static::cleanCssIdentifier(mb_strtolower($class)); + static::$classes[$class] = static::cleanCssIdentifier($class);
We don't want to remove calls like this, only the ones in tests where we call
$this->randomMachineName()
. - 🇮🇳India indrapatil Bangalore
@longwave Please review my updated patch and let me know of any changes.
- Status changed to Needs review
over 1 year ago 12:46pm 25 July 2023 - last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago 29,881 pass - Status changed to Needs work
over 1 year ago 2:05pm 25 July 2023 - 🇺🇸United States smustgrave
Can we include interdiffs please.
The file sizes are jumping all over the place.
Now I'm finding 80 instances of = strtolower($this->randomMachineName(
- 🇮🇳India indrapatil Bangalore
@smustgrave i fixed "80 instances of = strtolower($this->randomMachineName( "
and added an updated patch with interdiffs please review and let me know if any changes are required. - last update
over 1 year ago Custom Commands Failed - last update
over 1 year ago Custom Commands Failed - 🇮🇳India indrapatil Bangalore
Apologies my Previous changes are unexpected changes in the composer.json and I reverted and attached the patch.
- last update
over 1 year ago Custom Commands Failed - First commit to issue fork.
- Open on Drupal.org →Environment: PHP 8.2 & MySQL 8last update
over 1 year ago Not currently mergeable. - @sourabhjain opened merge request.
- Open on Drupal.org →Environment: PHP 8.2 & MySQL 8last update
over 1 year ago Not currently mergeable. - @sourabhjain opened merge request.
- Status changed to Needs review
over 1 year ago 7:01am 27 July 2023 - 🇧🇪Belgium borisson_ Mechelen, 🇧🇪
Something went wrong in the creation of the last MR, it is 850 commits behind on 11.x
- Status changed to Needs work
over 1 year ago 8:38am 27 July 2023 - First commit to issue fork.
- last update
over 1 year ago Custom Commands Failed - @bharath-kondeti opened merge request.
- 🇮🇳India indrapatil Bangalore
Update the patch for this issue. Please review it.
- last update
over 1 year ago Patch Failed to Apply - First commit to issue fork.
- last update
over 1 year ago 29,908 pass - @nlisgo opened merge request.
- Status changed to Needs review
over 1 year ago 5:28am 31 July 2023 - Status changed to RTBC
over 1 year ago 6:14pm 1 August 2023 - 🇺🇸United States smustgrave
Fixing up credit for bad MRs and CC failure patches.
Searching for mb_strtolower($this->randomMachineName and strtolower($this->randomMachineName and seems all instances have been replaced.
- Status changed to Fixed
over 1 year ago 6:33pm 1 August 2023 Automatically closed - issue fixed for 2 weeks with no activity.