Skip to content

Commit

Permalink
Merge pull request #55 from stellarwp/fix/ESM-70-fatal-error-on-ticke…
Browse files Browse the repository at this point in the history
…t-transfer

ESM-70 - Fix fatal when moving tickets in ET
  • Loading branch information
defunctl committed Jan 4, 2024
2 parents c551044 + 722e983 commit dfdb2ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Uplink/Admin/Provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function admin_notices(): void {
* @return void
*/
public function display_plugin_messages( $page ): void {
$this->container->get( Plugins_Page::class )->display_plugin_messages( $page );
$this->container->get( Plugins_Page::class )->display_plugin_messages( (string) $page );
}

/**
Expand All @@ -143,7 +143,7 @@ public function display_plugin_messages( $page ): void {
* @return void
*/
public function store_admin_notices( $page ): void {
$this->container->get( Plugins_Page::class )->store_admin_notices( $page );
$this->container->get( Plugins_Page::class )->store_admin_notices( (string) $page );
}

/**
Expand Down

0 comments on commit dfdb2ef

Please sign in to comment.