Page 1 of 1

1.6.5: Reported issues and fixes

Posted: Sun Sep 06, 2009 5:49 pm
by RonnyK
This post is not sticky anymore, as 1.6.6 is released. All fixes are in 1.6.6.

This topic will hold the reported issues and fixes for the 1.6.5 version.

1: Menu using start_level="2" doesnt appear.

The fix for the dissappearing start_level=2 is made in SVN. For those that experience the issue, you can modify the file

modules\MenuManager\action.default.php

where on line 89, the following must be replaced:
if( !$curcontent )  {
with:
if( $curcontent )  {
2: Submit is not taken on forms, when .htaccess is used and page_extension = ''.

Some users that use .htaccess and have the config.php set to have NO page_extension have no action on submit-buttons in forms.

This is fixed with a new .htaccess that will be released with the next release.
The new file is changed as follows:
#
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
# except for form POSTS
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteCond %{REQUEST_METHOD} !POST$
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
3. The use of the printbutton ends in a blank page or into opposite behavior (everything on screen, accept the content)

Topic discussed here: http://forum.cmsmadesimple.org/index.ph ... #msg178033


Ronny