Changeset 01bb031 in github
- Timestamp:
- Oct 26, 2005 6:30:57 PM (8 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 4518342
- Parents:
- b076a46
- Files:
-
- 2 edited
-
index.php (modified) (1 diff)
-
program/js/app.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
index.php
rb076a46 r01bb031 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']) || -
program/js/app.js
rb076a46 r01bb031 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.
