mcramer
2012-10-19 d18c666b76f972cffc76e56531cd1a35844d9031
Fixed: change triggers were missing (copied from domains to vhost subdomains)

2 files modified
7 ■■■■■ changed files
interface/web/sites/templates/web_domain_edit.htm 2 ●●● patch | view | raw | blame | history
interface/web/sites/templates/web_vhost_subdomain_edit.htm 5 ●●●●● patch | view | raw | blame | history
interface/web/sites/templates/web_domain_edit.htm
@@ -245,4 +245,4 @@
        });
    </tmpl_if>
            
</script>
</script>
interface/web/sites/templates/web_vhost_subdomain_edit.htm
@@ -167,7 +167,6 @@
            if(data.servertype == "nginx"){
                var selected = jQuery('#php').val();
                jQuery('.apache').hide();
                jQuery('.apache').hide();
                jQuery('#php option[value="fast-cgi"]').hide();
                jQuery('#php option[value="cgi"]').hide();
                jQuery('#php option[value="mod"]').hide();
@@ -175,12 +174,12 @@
                if(selected != "no" && selected != "php-fpm") jQuery('#php option[value="php-fpm"]').attr('selected', 'selected');
            } else {
                jQuery('.apache').show();
                jQuery('.apache').show();
                jQuery('#php option[value="fast-cgi"]').show();
                jQuery('#php option[value="cgi"]').show();
                jQuery('#php option[value="mod"]').show();
                jQuery('#php option[value="suphp"]').show();
            }
            jQuery('#php').change();
        });
    }
        
@@ -201,7 +200,7 @@
                }
                options += '<option value="'+key+'"'+phpfastcgiselected+'>'+val+'</option>';
            });
            $('#fastcgi_php_version').html(options);
            $('#fastcgi_php_version').html(options).change();
        });
    }