Ignore:
Timestamp:
01/23/12 19:00:19 (4 months ago)
Author:
CrawfordCurrie
Message:

Item11458: simplify and streamline handling of password file; it now must exist for Foswiki to run, and will be created by =configure= if not. This lets us do enhanced checking in =configure= while reducing the runtime burden.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UnitTestContrib/test/unit/RegisterTests.pm

    r13791 r13796  
    12461246 
    12471247    $query->path_info( '/' . $this->{users_web} . '/WebHome' ); 
    1248     unlink $Foswiki::cfg{Htpasswd}{FileName}; 
     1248    my $fh; 
     1249    open($fh, ">", $Foswiki::cfg{Htpasswd}{FileName}) || die $!; 
     1250    close($fh) || die $!; 
    12491251 
    12501252    $this->createNewFoswikiSession( $Foswiki::cfg{DefaultUserLogin}, $query ); 
Note: See TracChangeset for help on using the changeset viewer.