mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-03-24 15:24:36 +00:00
Coding standards, space after if
git-svn-id: https://develop.svn.wordpress.org/trunk@12752 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -36,11 +36,11 @@ $tabs = apply_filters('install_plugins_tabs', $tabs );
|
||||
$nonmenu_tabs = apply_filters('install_plugins_nonmenu_tabs', $nonmenu_tabs);
|
||||
|
||||
//If a non-valid menu tab has been selected, And its not a non-menu action.
|
||||
if( empty($tab) || ( ! isset($tabs[ $tab ]) && ! in_array($tab, (array)$nonmenu_tabs) ) ) {
|
||||
if ( empty($tab) || ( ! isset($tabs[ $tab ]) && ! in_array($tab, (array)$nonmenu_tabs) ) ) {
|
||||
$tab_actions = array_keys($tabs);
|
||||
$tab = $tab_actions[0];
|
||||
}
|
||||
if( empty($paged) )
|
||||
if ( empty($paged) )
|
||||
$paged = 1;
|
||||
|
||||
wp_enqueue_style( 'plugin-install' );
|
||||
|
||||
Reference in New Issue
Block a user