The array returned by this function is always blank which makes months unselectable in data popups.

This is because:

    foreach (date_month_names_translated() as $key => $month) {
      $month_names[$key] = $month_name;
    }

Should be:

    foreach (date_month_names_translated() as $key => $month) {
      $month_names[$key] = $month;
    }

Comments

slybud’s picture

Yes and it is directly impacting issue :
http://drupal.org/node/307406

Sylvain Moreau
http://www.ows.fr

KarenS’s picture

Status: Active » Fixed

Right, fixed in latest -dev. This is pretty critical so as soon as I get a couple other fixes in I'll roll a new release.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.