how to change link on logout?

Mark

Administrator
Staff member
it makes sense to have them redirect to the home page rather than the login page, I'll include this in the 1.4 release.

you can apply this to your list like so:

edit sources/user_cpl.php

find on line 185:
Code:
  header("refresh:1; '{$TMPL['list_url']}/index.php?a=user_cpl'");
change to:
Code:
  header("refresh:1; '{$TMPL['list_url']}/'");
 
Top