Anonymous can see user informations (solution)
I have discovered that anonymous (not connected) users can see users informations.
I don't like it at all like a lot of you guys i guess.
Thanks to Ggeller he give me the right solution.
Edit tiki-user_information.php
After line 14 add
if (!$user) {
$smarty->assign('msg', tra("You must be logged in to use this feature"));
$smarty->display("error.tpl");
die;
}
Work perfect !
Anonymous can no more sniff the site !
Note this has been done on :
// $Header: /cvsroot/tikiwiki/tiki/tiki-user_information.php,v 1.19.2.3 2004/08/23 22:43:25 mose Exp $
Should be added in next release if not already done !
Yoni