merging 6.5.6 bugfixes

This commit is contained in:
JT Smith 2005-04-19 20:55:11 +00:00
parent cd83598f7c
commit a58f2786f7
15 changed files with 207 additions and 88 deletions

View file

@ -19,6 +19,39 @@
- Fixed bugs in correctly setting default values in forms with anonymous arrays.
6.5.6
- Fixed a bunch of mostly cosmetic issues with the commerce system.
- Fixed a bug in the navigation system that would cause it not to work in
operations using the user style.
- fix [ 1171109 ] crumbtrail showing
- fix [ 1176383 ] Commerce for International customers
- fix [ 1175400 ] Shortcut.pm - refers to WebGUI::metadata
- fix [ 1172769 ] htmlform.pm template -> manage button
- fix [ 1173970 ] Redirects in trash still function
- fix [ 1173720 ] recursive encrypt content doesn't work
- fix [ 1176573 ] runHourly.pl - DeleteExpiredEvents
- fix [ 1175455 ] posts can be viewed by users who are not in groupIdView
- fix [ 1182381 ] Package deployed to self infinitely recurses
- fix [ 1177456 ] metadata fields do not show up in getEditForms for any
asset
- fix [ 1182302 ] getAssetAdderLinks gets prototypes that are deleted.
- fix [ 1182285 ] "bold" when highlighted - really messy
- fix [ 1177536 ] redundancy - thread.pm 6.5.5 line 559
- fix [ 1177336 ] DatabaseLink::whatIsUsing is out of date
- fix [ 1177450 ] Layout's view method does not exclude subclasses of Layouts
- fix [ 1176724 ] edit existing database link - wrong username/password
- fix [ 1176663 ] fixUrl needs to remove slashes from end of URLs
- fix [ 1173560 ] copyList doesn't copyList
- fix [ 1183014 ] deletion of post does not update lastPostId for CS
- fix [ 1185507 ] gotcha.txt SetPerlVar , uploadAccessHandler wrong
- fix [ 1185279 ] IE/SSL "Admin mode" prompts for download of port 80
material
- Fixed a bug in navigation where ancestors would become checked whenever
self was also checked.
- fix [ 1181266 ] Navigation - relative to root fails at third level
- fix [ 1173779 ] editSave metadata property doesn't save type
6.5.5
- fix [ 1171569 ] add/edit sql report help link has wrong namespace
- Fixed a bug in the collaboration system that caused replies to fail.

View file

@ -35,6 +35,16 @@ save you many hours of grief.
http://log4perl.sourceforge.net/releases/Log-Log4perl/docs/html/Log/Log4perl/Config.html
6.5.6
--------------------------------------------------------------------
* The uploadsAccessHandler.perl script has specific issues with
various versions of mod_perl and Perl CGI due to the many recent
changes in mod_perl and Perl CGI. For this reason it may not work
on your platform. We're working to make a script that will work
everywhere. Until then, using the latest versions of mod_perl and
Perl CGI should produce working results.
6.5.0
--------------------------------------------------------------------
* The International Macro must be enabled in all WebGUI configuration
@ -119,12 +129,12 @@ save you many hours of grief.
before sending them to the browser. To enable this you must use
these directives:
SetPerlVar WebguiRoot /data/WebGUI
PerlRequire /data/WebGUI/sbin/uploadAccessHandler.perl
PerlSetVar WebguiRoot /data/WebGUI
PerlRequire /data/WebGUI/sbin/uploadsAccessHandler.perl
And then add this to each virtual host you wish to protect:
PerlSetEnv WebguiConfig www.example.com.conf
PerlSetVar WebguiConfig www.example.com.conf
<Location /uploads>
PerlAccessHandler WebGUI::UploadsAccessHandler
</Location>

View file

@ -0,0 +1,4 @@
insert into webguiVersion values ('6.5.6','upgrade',unix_timestamp());
alter table metaData_values drop primary key;
alter table metaData_values add primary key (fieldId,assetId);