in Apache::Status, in subroutine non_b_graph, on line 516, there is

    (my $thing = $r->path_info) =~ s:^/::;
    my $type = "dot";
    my $file = "$dir/$thing.$$.gif";

That doesn't work too well on windows, since you can't have :: in filenames
The fix, I put on line 517, and it is

    $thing =~ s{::}{-}g; # cause some OS's dont' allow :: in filenames

__________________________________________________
Do You Yahoo!?
Yahoo! Autos - Get free new car price quotes
http://autos.yahoo.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to