Skip to content

Commit

Permalink
Fix #11829 part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Aug 26, 2022
1 parent 8ce3e9b commit e38ee60
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release Notes for Craft CMS 3.x

## 3.7.53.1 - 2022-08-26

### Fixed
- Fixed a PHP error that occurred when garbage collection was run on web requests. ([#11829](https://github.com/craftcms/cms/issues/11829))

## 3.7.53 - 2022-08-26

### Added
Expand All @@ -12,7 +17,6 @@
### Fixed
- Fixed a bug where the “Edit files uploaded by other users” volume permission was useless unless the “Upload files” permission had been granted. ([#11818](https://github.com/craftcms/cms/issues/11818))
- Fixed a bug where the “Save and add another” entry action was being shown for users without the “Create entries” section permission. ([#11819](https://github.com/craftcms/cms/issues/11819))
- Fixed a PHP error that occurred when garbage collection was run on web requests. ([#11829](https://github.com/craftcms/cms/issues/11829))

## 3.7.52 - 2022-08-23

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "craftcms/cms",
"description": "Craft CMS",
"version": "3.7.53",
"version": "3.7.53.1",
"keywords": [
"cms",
"craftcms",
Expand Down
2 changes: 1 addition & 1 deletion src/config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
return [
'id' => 'CraftCMS',
'name' => 'Craft CMS',
'version' => '3.7.53',
'version' => '3.7.53.1',
'schemaVersion' => '3.7.33',
'minVersionRequired' => '2.6.2788',
'basePath' => dirname(__DIR__), // Defines the @app alias
Expand Down
2 changes: 1 addition & 1 deletion src/services/Gc.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public function hardDelete($tables)
public function deletePartialElements(string $elementType, string $table, string $fk): void
{
/** @var string|ElementInterface $elementType */
Console::stdout(sprintf(' > deleting partial %s data in the `%s` table ... ', $elementType::lowerDisplayName(), $table));
$this->_stdout(sprintf(' > deleting partial %s data in the `%s` table ... ', $elementType::lowerDisplayName(), $table));
$db = Craft::$app->getDb();
$elementsTable = Table::ELEMENTS;

Expand Down

0 comments on commit e38ee60

Please sign in to comment.