Fixes for AR-1940. Extension was being lost and defaulting back to ".doc" which meant webdav links were being built incorrectly for Excel and PowerPoint.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7722 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mike Hatfield
2007-12-20 17:24:22 +00:00
parent 8e6fd7a7c1
commit a49ac713cd
22 changed files with 101 additions and 79 deletions

View File

@@ -47,7 +47,7 @@ var OfficeMyAlfresco =
// register 'click' event for each task
task.addEvent('click', function(e)
{
window.location.href = window.serviceContextPath + "/office/myTasks?p=" + window.queryObject.p + "&t=" + task.id;
window.location.href = window.serviceContextPath + "/office/myTasks" + OfficeAddin.defaultQuery + "&t=" + task.id;
});
});