75 | | wp_die( __( 'Incompatible Archive.' ) ); |
| 75 | if ( 'pluginzip' === $form ) { |
| 76 | $plugins_page = sprintf( |
| 77 | '<a href="%s">%s</a>', |
| 78 | self_admin_url( 'plugin-install.php' ), |
| 79 | __( 'Go to Plugin Installer' ) |
| 80 | ); |
| 81 | wp_die( __( 'Incompatible Archive.' ) . '<br>' . $plugins_page ); |
| 82 | } else { |
| 83 | $themes_page = sprintf( |
| 84 | '<a href="%s" target="_parent">%s</a>', |
| 85 | self_admin_url( 'theme-install.php' ), |
| 86 | __( 'Go to Theme Installer' ) |
| 87 | ); |
| 88 | wp_die( __( 'Incompatible Archive.' ) . '<br>' . $themes_page ); |
| 89 | } |