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:
parent
0a3d9b3949
commit
97bf6053e3
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in New Issue