Development

Changeset 8821

You must first sign up to be able to contribute.

Changeset 8821

Show
Ignore:
Timestamp:
05/07/08 00:11:41 (3 months ago)
Author:
FabianLange
Message:

merged xhtml fixes from 1.0

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/helper/FormHelper.php

    r7757 r8821  
    229229 
    230230  $option_tags = options_for_select($countries, $selected, $options); 
     231  unset($options['include_blank'], $options['include_custom']); 
    231232 
    232233  return select_tag($name, $option_tags, $options); 
     
    276277 
    277278  $option_tags = options_for_select($languages, $selected, $options); 
     279  unset($options['include_blank'], $options['include_custom']); 
    278280 
    279281  return select_tag($name, $option_tags, $options); 
     
    663665  $jss = array( 
    664666    sfConfig::get('sf_calendar_web_dir').'/calendar', 
    665     sfConfig::get('sf_calendar_web_dir').'/lang/calendar-en', 
    666     $langFile, 
     667    is_readable(sfConfig::get('sf_symfony_data_dir').'/web/'.$langFile.'.js') || is_readable(sfConfig::get('sf_web_dir').'/'.$langFile.'.js') ? $langFile : sfConfig::get('sf_calendar_web_dir').'/lang/calendar-en', 
    667668    sfConfig::get('sf_calendar_web_dir').'/calendar-setup', 
    668669  );