Skip to content

Commit

Permalink
removing translations for the get_plugin_data (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
iruzevic authored Nov 26, 2024
1 parent 0aacc8d commit 9e53e47
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a CHANGELOG](https://keepachangelog.com/).

## [9.3.1]

### Fixed

- `get_plugin_data` method will no longer translate the plugin name and description implemented in core `6.7`.

## [9.3.0]

### Added
Expand Down Expand Up @@ -787,7 +793,7 @@ Init setup
- Gutenberg Blocks Registration.
- Assets Manifest data.

[Unreleased]: https://github.com/infinum/eightshift-libs/compare/main...HEAD
[9.3.1]: https://github.com/infinum/eightshift-libs/compare/9.3.0...9.3.1
[9.3.0]: https://github.com/infinum/eightshift-libs/compare/9.2.2...9.3.0
[9.2.2]: https://github.com/infinum/eightshift-libs/compare/9.2.1...9.2.2
[9.2.1]: https://github.com/infinum/eightshift-libs/compare/9.2.0...9.2.1
Expand Down
2 changes: 1 addition & 1 deletion src/Helpers/ProjectInfoTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,6 @@ protected static function getPluginDetails(): array

$name = \basename($path);

return \get_plugin_data("{$path}{$name}.php");
return \get_plugin_data("{$path}{$name}.php", false, false);
}
}

0 comments on commit 9e53e47

Please sign in to comment.