Merge pull request #43 from tollmanz/master

Fix for undefined index notice on General Settings page
This commit is contained in:
Mike Jolley 2011-10-04 02:01:32 -07:00
commit 96c9ebccf7
1 changed files with 3 additions and 1 deletions

View File

@ -95,7 +95,8 @@ $woocommerce_settings['general'] = apply_filters('woocommerce_general_settings',
'desc' => sprintf( __( 'Enter your %1$sShareThis publisher ID%2$s to show ShareThis on product pages.', 'woothemes' ), '<a href="http://sharethis.com/account/">', '</a>' ),
'id' => 'woocommerce_sharethis',
'type' => 'text',
'std' => ''
'std' => '',
'css' => ''
),
array(
@ -103,6 +104,7 @@ $woocommerce_settings['general'] = apply_filters('woocommerce_general_settings',
'desc' => __('Log into your google analytics account to find your ID. e.g. <code>UA-XXXXX-X</code>', 'woothemes'),
'id' => 'woocommerce_ga_id',
'type' => 'text',
'css' => ''
),
array(