kjackson
Junior Member
Posts: 6
Registered: 6/18/2007
Member Is Offline
|
| posted on 6/27/2007 at 03:07 PM |
|
|
Events Monthly on Login
Is there a way to change the default Events view from Day to Monthly? For instance, if someone logs on instead of it showing the Day view at the
beginning it would show the Monthly view.
Thanks for the help
[FIX]
open auth.php
find the following line: $__SESSION__['group'] = $a_users[$login]['group']; // i believe it is line 22
add a new line under it that is:
$show_type = 3;
this will make go to the monthly view by default during the login, otherwise it go to the regular Day view.
To make the view on login to whatever view you wish, the key is:
1 = day
2 = week
3 = month
4 = year
|
|
|
|