Changeset 01bb031 in github


Ignore:
Timestamp:
Oct 26, 2005 6:30:57 PM (8 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
4518342
Parents:
b076a46
Message:

Finished message sorting and fixed some skin issues

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • index.php

    rb076a46 r01bb031  
    142142 
    143143// check session cookie and auth string 
    144 else if ($_action!='login' && $sess_auth) 
     144else if ($_action!='login' && $sess_auth && $_SESSION['user_id']) 
    145145  { 
    146146  if ($_auth !== $sess_auth || $_auth != rcmail_auth_hash($_SESSION['client_id'], $_SESSION['auth_time']) || 
  • program/js/app.js

    rb076a46 r01bb031  
    783783  this.switch_task = function(task) 
    784784    { 
    785     if (this.task===task) 
     785    if (this.task===task && task!='mail') 
    786786      return; 
    787787 
     788    var url = this.get_task_url(task); 
     789    if (task=='mail') 
     790      url += '&_mbox=INBOX'; 
     791 
    788792    this.set_busy(true); 
    789     location.href = this.get_task_url(task);       
     793    location.href = url; 
    790794    }; 
    791795 
Note: See TracChangeset for help on using the changeset viewer.