- fix [ 1163407 ] Ampersand XHTML 1.0 Non-Compliant
This commit is contained in:
parent
789263864a
commit
ed161ce282
61 changed files with 244 additions and 456 deletions
|
|
@ -1,4 +1,5 @@
|
|||
6.7.2
|
||||
- fix [ 1163407 ] Ampersand XHTML 1.0 Non-Compliant
|
||||
- fix [ 1243559 ] profile field security vulnerability (Len Kranendonk)
|
||||
- fix [ 1271490 ] uncommitted version appears in Navigation (midellaq)
|
||||
- fix [ 1268605 ] field type selection broken (midellaq)
|
||||
|
|
|
|||
|
|
@ -451,3 +451,18 @@ introduce errors to the database when modifying it directly rather than using
|
|||
the APIs.
|
||||
|
||||
|
||||
5.20 Use ; instead of & in URLs
|
||||
|
||||
In our effort to achieve full XHTML strict compliance we have switched
|
||||
WebGUI's internals to expect a ; instead of a & as the URL query parameter
|
||||
delimiter in 6.7.2. You must update your WebGUI plugins to reflect this new
|
||||
URL style.
|
||||
|
||||
|
||||
5.21 WebGUI::Search Removed
|
||||
|
||||
The old WebGUI::Search package has been removed in 6.7.2. It hasn't been used
|
||||
by any WebGUI core package since 6.3 and wasn't really used much prior to that.
|
||||
If you were using it, just copy it's subs into your app.
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -15,9 +15,15 @@ fixTimeFields();
|
|||
fixSpelling();
|
||||
fixCSTemplate();
|
||||
speedUpAdminConsole();
|
||||
removeOldFiles();
|
||||
|
||||
finish();
|
||||
|
||||
#-------------------------------------------------
|
||||
sub removeOldFiles {
|
||||
print "\tRemoving files that are no longer needed.\n" unless ($quiet);
|
||||
unlink("../../lib/WebGUI/Search.pm");
|
||||
}
|
||||
|
||||
#-------------------------------------------------
|
||||
sub speedUpAdminConsole {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue