You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ( true === $GLOBALS['wp_filesystem']->move( $from, $to ) ) {
1022
-
returntrailingslashit( $to );
1021
+
if ( true === $GLOBALS['wp_filesystem']->move( $from_path, $to_path ) ) {
1022
+
returntrailingslashit( $to_path );
1023
1023
} else {
1024
1024
returnnewWP_Error( 'rename_failed', esc_html__( 'The remote plugin package does not contain a folder with the desired slug and renaming did not work.', 'tgmpa' ) . '' . esc_html__( 'Please contact the plugin provider and ask them to package their plugin according to the WordPress guidelines.', 'tgmpa' ), array( 'found' => $subdir_name, 'expected' => $desired_slug ) );
1025
1025
}
@@ -1452,13 +1452,13 @@ public function sanitize_key( $key ) {
0 commit comments