- Timestamp:
- 02/09/2020 04:52:28 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-plugin-installer-skin.php
r45932 r47219 90 90 } 91 91 92 if ( 'import' == $from ) {92 if ( 'import' === $from ) { 93 93 $install_actions['importers_page'] = sprintf( 94 94 '<a href="%s" target="_parent">%s</a>', … … 96 96 __( 'Return to Importers' ) 97 97 ); 98 } elseif ( $this->type == 'web') {98 } elseif ( 'web' === $this->type ) { 99 99 $install_actions['plugins_page'] = sprintf( 100 100 '<a href="%s" target="_parent">%s</a>', … … 102 102 __( 'Return to Plugin Installer' ) 103 103 ); 104 } elseif ( 'upload' == $this->type && 'plugins'== $from ) {104 } elseif ( 'upload' === $this->type && 'plugins' === $from ) { 105 105 $install_actions['plugins_page'] = sprintf( 106 106 '<a href="%s">%s</a>',
Note: See TracChangeset
for help on using the changeset viewer.