mcramer
2012-10-19 f2943791da28d6700b459b92ab4c657402013af8
Fixed: Flags are missing on some country selectors

2 files modified
5 ■■■■■ changed files
interface/web/js/jquery.tipsy.js 2 ●●● patch | view | raw | blame | history
interface/web/sites/templates/web_domain_edit.htm 3 ●●●● patch | view | raw | blame | history
interface/web/js/jquery.tipsy.js
@@ -278,7 +278,7 @@
                                            ")(?![^<>]*>)(?![^&;]+;)", "gi"
                                        ), "<strong>$1</strong>" )),
                                    value: text,
                                    class: (select.hasClass('flags') ? 'country-' + $(this).val() : $(this).attr('class')),
                                    class: (select.hasClass('flags') ? 'country-' + $(this).val().toUpperCase() : $(this).attr('class')),
                                    option: this
                                };
                        }) );
interface/web/sites/templates/web_domain_edit.htm
@@ -205,6 +205,7 @@
                jQuery('#php option[value="mod"]').show();
                jQuery('#php option[value="suphp"]').show();
            }
            jQuery('#php').change();
        });
    }
        
@@ -225,7 +226,7 @@
                }
                options += '<option value="'+key+'"'+phpfastcgiselected+'>'+val+'</option>';
            });
            $('#fastcgi_php_version').html(options);
            $('#fastcgi_php_version').html(options).change();
        });
    }