Changeset 63 in subversion
- Timestamp:
- Oct 26, 2005 6:30:57 PM (8 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
index.php (modified) (1 diff)
-
program/js/app.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/index.php
r62 r63 142 142 143 143 // check session cookie and auth string 144 else if ($_action!='login' && $sess_auth )144 else if ($_action!='login' && $sess_auth && $_SESSION['user_id']) 145 145 { 146 146 if ($_auth !== $sess_auth || $_auth != rcmail_auth_hash($_SESSION['client_id'], $_SESSION['auth_time']) || -
trunk/roundcubemail/program/js/app.js
r62 r63 783 783 this.switch_task = function(task) 784 784 { 785 if (this.task===task )785 if (this.task===task && task!='mail') 786 786 return; 787 787 788 var url = this.get_task_url(task); 789 if (task=='mail') 790 url += '&_mbox=INBOX'; 791 788 792 this.set_busy(true); 789 location.href = this.get_task_url(task);793 location.href = url; 790 794 }; 791 795
Note: See TracChangeset
for help on using the changeset viewer.
