Commit df621453 authored by innerfly's avatar innerfly
Browse files

updated list of currencies

parent 4f007949
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -75,7 +75,8 @@ function uc_rbkmoney_setup() {
  $form['recipientCurrency'] = array(
    '#type' => 'select',
    '#title' => t('Payments currency'),
    '#options' => array($curr => $curr, 'RUR' => 'RUR', 'USD' => 'USD', 'EUR' => 'EUR', 'UAH' => 'UAH'),
    '#options' => array('RUR' => 'RUR', 'USD' => 'USD', 'EUR' => 'EUR', 'UAH' => 'UAH'),
    '#default_value' => $curr,
    '#description' => t("Please, select payments currency"),
    '#required' => TRUE,
  );