side porting Windows testing fix

This commit is contained in:
Colin Kuskie 2008-02-22 18:32:56 +00:00
parent cf5dfda32e
commit ac28252d53
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,6 @@
7.5.3
- prevent HTML and Macro injection in usernames
- fixed: Running WebGUI Tests on Windows (William McKee, Knowmad Technologies)
7.5.2
- add: Auth modules now accept a "returnUrl" form parameter when logging in

View file

@ -89,7 +89,8 @@ BEGIN {
$WEBGUI_ROOT = File::Spec->canonpath($WEBGUI_ROOT);
$WEBGUI_TEST_COLLATERAL = File::Spec->catdir($WEBGUI_ROOT, 't', 'supporting_collateral');
$WEBGUI_LIB ||= File::Spec->catpath( (File::Spec->splitpath($WEBGUI_ROOT))[0], $WEBGUI_ROOT, 'lib' );
my ($volume,$directories) = File::Spec->splitpath( $WEBGUI_ROOT, 'no_file' );
$WEBGUI_LIB ||= File::Spec->catpath( $volume, $directories, 'lib' );
push (@INC,$WEBGUI_LIB);