Updated to 5.0.6
December 9th, 201310th Dec still have one & error
1. Login widget gives & error
2.Once logged in the above disappears but get 6 x Bubble tips errors
3. have updated many files with '&' instead of & amp;
skins/_login_disp.php
line 50/skins/login.main.php
line 31/admin.php
lines 245,250x2, 257/inc/skins/_skin.funcs.php
lines 151,154,158,174,254,291 and 314/htsrv/login.php
line3 192x2, 273, 278x4, 542, 545, 550, 552/inc/_core/_url.funcs.php
line 903****** this may have sorted '&source' *******
/inc/user/model/_user.funcs.php
lines 216,234,237,597,1512,3224x3,3228,3240,3255,3270
not done 2692,2722,2744NOT 5.0.6 /inc/widgets/widgets/_user_login.widget.php
line 220/inc/user/model/_user.class.php
line 3203,3523
Added 13th Dec 2013
Found second such error {redirect_to&} in
/inc/items/model/_user.func.php
line 193,205,229,234 ~~ 205 was the one ~~
4.
/inc/user/model/_user.funcs.php
lines 1321,1326 Removed (rel="bubbletip_user_'.$User->ID.'")
/inc/user/model/_user.class.php ******** got rid of bubbletip *****
line 32031327 Removed (class="'.$this->get_gender_class().'"'.$attr_bubbletip.')
Login to see comments
August 24th, 2013I have added code to limit comments to being seen only by members
in
posts.main.php, page.main.php and single.main.php
Example: in single.main (version $Id: single.main.php,v 1.7 2007/11/24 21:31:22 fplanque Exp $)
before
skin_include( '_item_feedback.inc.php', array
if(isset($current_User) and ($current_User->level)>1){
skin_include( '_item_feedback.inc.php', array
and put a banner informing users of this when not logged in
After <div id="content" class="column">
<?php
if(!isset($current_User) )
{
echo ('<div class="page_action">Only logged in users can see comments to posts')</div>');
}
?>







