Fix notice. Closes #1760.

This commit is contained in:
Mike Jolley 2012-11-15 11:27:14 +00:00
parent fde2d939da
commit a52021dd35
1 changed files with 2 additions and 2 deletions

View File

@ -378,13 +378,13 @@ function woocommerce_product_data_box() {
</tr> </tr>
<tr> <tr>
<td> <td>
<label><input type="checkbox" class="checkbox" <?php checked( $attribute['is_visible'], 1 ); ?> name="attribute_visibility[<?php echo $i; ?>]" value="1" /> <?php _e( 'Visible on the product page', 'woocommerce' ); ?></label> <label><input type="checkbox" class="checkbox" <?php if ( ! empty( $attribute['is_visible'] ) ) checked( $attribute['is_visible'], 1 ); ?> name="attribute_visibility[<?php echo $i; ?>]" value="1" /> <?php _e( 'Visible on the product page', 'woocommerce' ); ?></label>
</td> </td>
</tr> </tr>
<tr> <tr>
<td> <td>
<div class="enable_variation show_if_variable"> <div class="enable_variation show_if_variable">
<label><input type="checkbox" class="checkbox" <?php checked( $attribute['is_variation'], 1 ); ?> name="attribute_variation[<?php echo $i; ?>]" value="1" /> <?php _e( 'Used for variations', 'woocommerce' ); ?></label> <label><input type="checkbox" class="checkbox" <?php if ( ! empty( $attribute['is_variation'] ) ) checked( $attribute['is_variation'], 1 ); ?> name="attribute_variation[<?php echo $i; ?>]" value="1" /> <?php _e( 'Used for variations', 'woocommerce' ); ?></label>
</div> </div>
</td> </td>
</tr> </tr>