This is from fresh install of 6.0.0002 from modmysite. Hopefully this'll be fixed in 6.0.3.
/inc/tags.inc.php
mods in function explodeTags()
// $aTags[$iInd] = mb_strtolower( $sTag , 'UTF-8');
$aTags[$iInd] = strtolower( $sTag );
/blogs.php
mods in case 'add_post':
(add 2 lines below bug - I don't have time to find out what the issue is, so I just added the redirect that is logical)
if( empty( $arrErr ) ) {
$iLastID = -1;
$sRetHtml .= $oBlogs->ActionAddNewPost($iLastID);
$_REQUEST['post_id'] = $iLastID;
$sRetHtml .= $oBlogs->GenPostPage();
// bug: redirect not working, so add this to redirect to post result
$oBlogs->GenMemberBlog();
break;
} else {
$sRetHtml .= $oBlogs->AddNewPostForm(-1, $arrErr);
}
Bookmarks