Changeset 6013 in subversion
- Timestamp:
- Mar 15, 2012 2:49:24 PM (14 months ago)
- Location:
- branches/release-0.7
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_template.php (modified) (1 diff)
-
program/js/app.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-0.7/CHANGELOG
r6010 r6013 2 2 =========================== 3 3 4 - Fix lack of warning when switching task in compose window (#1488399) 4 5 - Fix bug where it wasn't possible to enter ( or & characters in autocomplete fields 5 6 - 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 917 917 if (in_array($attrib['command'], rcmail::$main_tasks)) { 918 918 $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']); 920 920 } 921 921 else if ($attrib['task'] && in_array($attrib['task'], rcmail::$main_tasks)) { -
branches/release-0.7/program/js/app.js
r6010 r6013 172 172 173 173 // 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); 175 175 176 176 if (this.env.permaurl)
Note: See TracChangeset
for help on using the changeset viewer.
