Fix notice that occurs from external function call

Resolves https://github.com/woothemes/woocommerce/issues/5506.

This checks to see if the `integrations` array has any values before getting it's current value.
This commit is contained in:
Luke Carbis 2014-05-19 15:57:34 +10:00
parent 0a3d9b3949
commit 97bf6053e3
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ class WC_Settings_Integrations extends WC_Settings_Page {
$integrations = WC()->integrations->get_integrations();
if ( ! $current_section )
if ( ! $current_section && ! empty( $integrations ) )
$current_section = current( $integrations )->id;
foreach ( $integrations as $integration ) {
@ -71,4 +71,4 @@ class WC_Settings_Integrations extends WC_Settings_Page {
endif;
return new WC_Settings_Integrations();
return new WC_Settings_Integrations();