Document change in handling sequences of dashes.

This commit is contained in:
Colin Kuskie 2010-05-16 22:16:18 -07:00
parent d2b6a7fff1
commit 23183276e3
2 changed files with 4 additions and 1 deletions

View file

@ -11,6 +11,9 @@ save you many hours of grief.
--------------------------------------------------------------------
* Starting in WebGUI 7.9.4, the CHI and Cache::FastMmap modules are required.
* Starting in WebGUI 7.9.5, you cannot enter in a URL that is a has more than 2 dashes,
"-", in a row. They will be collapsed down into 1 dash.
7.9.4
--------------------------------------------------------------------
* Shop and Cart changes

View file

@ -370,7 +370,7 @@ $session->setting->set('urlExtension', undef);
is($importNode->fixUrl('1234'.'_'x235 . 'abcdefghij'), '1234'.'_'x235 . 'abcdefghij', 'fixUrl leaves long URLs under 250 characters alone');
is($importNode->fixUrl('1234'.'_'x250 . 'abcdefghij'), '1234'.'_'x216, 'fixUrl truncates long URLs over 250 characters to 220 characters');
is $importNode->fixUrl('---'), '---', '... 3 dashes are legal';
is $importNode->fixUrl('---'), '-', '... 3 dashes are collapsed down to a single dash';
WebGUI::Test->originalConfig('extrasURL');
WebGUI::Test->originalConfig('uploadsURL');