Ignore:
Timestamp:
Mar 15, 2009, 5:24:11 AM (15 years ago)
Author:
mitchb
Message:
Fix generation of the fallback htaccess file for trac.
Using single quotes results in the literal characters \n
and no end-of-line, and thus a malformed htaccess file.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • locker/deploy/bin/trac

    r1014 r1015  
    6161
    6262open OUT, '>tracdata/.htaccess';
    63 print OUT 'Deny from all\n';
     63print OUT "Deny from all\n";
    6464close OUT;
    6565chmod 0777, 'tracdata/.htaccess';
Note: See TracChangeset for help on using the changeset viewer.