Stop UserLastVisit field update - Joomla! Forum - community, help and support
hi all,
i want stop update latvisitdate field when user clicks on logout button in site. can please can stop field update?
thanks
sateesh
i want stop update latvisitdate field when user clicks on logout button in site. can please can stop field update?
thanks
sateesh
when ask help, should give joomla version.
if using joomla 2.5, edit file plugins/user/joomla/joomla.php ,
comment line out.
if using joomla 2.5, edit file plugins/user/joomla/joomla.php ,
code: select all
public function onuserlogout($user, $options = array()){
...
$my->setlastvisit();
...
}comment line out.
code: select all
public function onuserlogout($user, $options = array()){
...
//$my->setlastvisit();
...
}
Comments
Post a Comment