Index: uc_store/uc_store.admin.inc =================================================================== --- uc_store/uc_store.admin.inc (revisión: 1442) +++ uc_store/uc_store.admin.inc (copia de trabajo) @@ -771,6 +771,13 @@ function uc_store_format_settings_form() '#default_value' => variable_get('uc_currency_prec', 2), ); + $form['currency']['uc_currency_zeros'] = array( + '#type' => 'checkbox', + '#title' => t('Remove decimals if they are zero'), + '#summary callback' => 'summarize_null', + '#default_value' => variable_get('uc_currency_zeros', 0), + ); + $form['weight'] = array( '#type' => 'fieldset', '#title' => t('Weight format'),