mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Fix mail "move to folder".Missing start index in substr function
This commit is contained in:
parent
9562483697
commit
79f2554120
@ -1612,8 +1612,8 @@ app.classes.mail = AppJS.extend(
|
||||
that.mail_callCopy(_action, _elems,_target, rv);
|
||||
break;
|
||||
default:
|
||||
if (_action.id.substr(5)=='move') that.mail_callMove(_action, _elems,_target, rv);
|
||||
if (_action.id.substr(5)=='copy') that.mail_callCopy(_action, _elems,_target, rv);
|
||||
if (_action.id.substr(0,4)=='move') that.mail_callMove(_action, _elems,_target, rv);
|
||||
if (_action.id.substr(0,4)=='copy') that.mail_callCopy(_action, _elems,_target, rv);
|
||||
}
|
||||
},
|
||||
messageToDisplay,
|
||||
|
Loading…
Reference in New Issue
Block a user