diff -r 34716fd837a4 -r be944660c56a wp/wp-admin/plugin-editor.php --- a/wp/wp-admin/plugin-editor.php Tue Dec 15 15:52:01 2020 +0100 +++ b/wp/wp-admin/plugin-editor.php Wed Sep 21 18:19:35 2022 +0200 @@ -195,7 +195,7 @@

' . esc_html( $file ) . '' ); } else { @@ -203,7 +203,7 @@ printf( __( 'Browsing %s (active)' ), '' . esc_html( $file ) . '' ); } } else { - if ( is_writeable( $real_file ) ) { + if ( is_writable( $real_file ) ) { /* translators: %s: Plugin file name. */ printf( __( 'Editing %s (inactive)' ), '' . esc_html( $file ) . '' ); } else { @@ -216,7 +216,7 @@
- +