Changeset 63 in subversion


Ignore:
Timestamp:
Oct 26, 2005 6:30:57 PM (8 years ago)
Author:
roundcube
Message:

Finished message sorting and fixed some skin issues

Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/index.php

    r62 r63  
    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']) || 
  • trunk/roundcubemail/program/js/app.js

    r62 r63  
    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.