Changeset 2692


Ignore:
Timestamp:
03/12/10 22:10:37 (2 years ago)
Author:
nuxwin
Message:
  • [ENGINE] Fixed #2289: Avoid to recreate 'disabled' layout directory for

domains that are disabled

Location:
branches/omega-1.0.5
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/omega-1.0.5/CHANGELOG

    r2691 r2692  
    11ispCP ω 1.0.5 Changelog 
    22~~~~~~~~~~~~~~~~~~~~~~~~~~ 
     3 
     42010-03-12 Laurent Declercq 
     5        - ENGINE: 
     6                * Fixed #2281: Avoid to recreate 'disabled' layout directory for domains 
     7                        that are disabled 
    38 
    492010-03-12 Benedikt Heintel 
  • branches/omega-1.0.5/engine/ispcp-dmn-mngr

    r2669 r2692  
    23062306    # Default disable page template; 
    23072307        # 
    2308         # check if disable folder does not exist 
    2309         if (!(-e "$www_dir/$dmn_name/disabled")) { 
     2308        # check if disable folder does not exist and the domain is not disabled 
     2309        if (!-e "$www_dir/$dmn_name/disabled" && !-e "$www_dir/$dmn_name/htdocs.disabled") { 
    23102310                $rs = make_dir( 
    23112311                        "$www_dir/$dmn_name/disabled", 
Note: See TracChangeset for help on using the changeset viewer.