Skip to content

Commit dfdb2ef

Browse files
authored
Merge pull request #55 from stellarwp/fix/ESM-70-fatal-error-on-ticket-transfer
ESM-70 - Fix fatal when moving tickets in ET
2 parents c551044 + 722e983 commit dfdb2ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Uplink/Admin/Provider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public function admin_notices(): void {
130130
* @return void
131131
*/
132132
public function display_plugin_messages( $page ): void {
133-
$this->container->get( Plugins_Page::class )->display_plugin_messages( $page );
133+
$this->container->get( Plugins_Page::class )->display_plugin_messages( (string) $page );
134134
}
135135

136136
/**
@@ -143,7 +143,7 @@ public function display_plugin_messages( $page ): void {
143143
* @return void
144144
*/
145145
public function store_admin_notices( $page ): void {
146-
$this->container->get( Plugins_Page::class )->store_admin_notices( $page );
146+
$this->container->get( Plugins_Page::class )->store_admin_notices( (string) $page );
147147
}
148148

149149
/**

0 commit comments

Comments
 (0)