Changeset 6013 in subversion


Ignore:
Timestamp:
Mar 15, 2012 2:49:24 PM (14 months ago)
Author:
alec
Message:
Location:
branches/release-0.7
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/release-0.7/CHANGELOG

    r6010 r6013  
    22=========================== 
    33 
     4- Fix lack of warning when switching task in compose window (#1488399) 
    45- Fix bug where it wasn't possible to enter ( or & characters in autocomplete fields 
    56- Fix counting of messages search results (on refresh when search filter is in use) 
  • branches/release-0.7/program/include/rcube_template.php

    r5481 r6013  
    917917            if (in_array($attrib['command'], rcmail::$main_tasks)) { 
    918918                $attrib['href'] = rcmail_url(null, null, $attrib['command']); 
    919                 $attrib['onclick'] = sprintf("%s.switch_task('%s');return false", JS_OBJECT_NAME, $attrib['command']); 
     919                $attrib['onclick'] = sprintf("%s.command('switch-task','%s');return false", JS_OBJECT_NAME, $attrib['command']); 
    920920            } 
    921921            else if ($attrib['task'] && in_array($attrib['task'], rcmail::$main_tasks)) { 
  • branches/release-0.7/program/js/app.js

    r6010 r6013  
    172172 
    173173    // enable general commands 
    174     this.enable_command('logout', 'mail', 'addressbook', 'settings', 'save-pref', 'compose', 'undo', true); 
     174    this.enable_command('logout', 'mail', 'addressbook', 'settings', 'save-pref', 'compose', 'undo', 'switch-task', true); 
    175175 
    176176    if (this.env.permaurl) 
Note: See TracChangeset for help on using the changeset viewer.