Skip to content

Commit b457ce6

Browse files
committed
fix: autoloader message release link
1 parent dfeded3 commit b457ce6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- fix: Check if classes are loaded by a different autoloader before attempting to autoload them. H/t @cvanh
66
- fix: Return `wp_max_upload_size()` instead of `null` if `GfFieldWithFileSizeSetting.maxFileSize` is `null`. H/t @Gytjarek
7+
- fix: Fix typo in Autoloader release URL.
78
- ci: Replace calls to `docker-compose` with `docker compose`.
89

910
## v0.13.0

src/Autoloader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected static function missing_autoloader_notice(): void {
6969
// Translators: %s is a link to the latest release file.
7070
$error_message = __( 'WPGraphQL for GF: The Composer autoloader was not found. This usually means you downloaded the repository source code instead of the latest %s release file. If you are intentionally using the GitHub source code, make sure to run `composer install`.', 'wp-graphql-gravity-forms' );
7171

72-
$release_link = '<a href="https://github.com/axewp/wp-graphql-gravity-forms/releases/latest/download/wp-graphql-gravity-forms.zip" target="_blank">wp-graphql-gravityforms.zip</a>';
72+
$release_link = '<a href="https://github.com/axewp/wp-graphql-gravity-forms/releases/latest/download/wp-graphql-gravity-forms.zip" target="_blank">wp-graphql-gravity-forms.zip</a>';
7373

7474
if ( defined( 'WP_DEBUG' ) && WP_DEBUG ) {
7575
error_log( // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log -- This is a development notice.

0 commit comments

Comments
 (0)