fixed: Project Manager sometimes causes errors when adding users to a task

This commit is contained in:
Graham Knop 2008-08-27 19:30:58 +00:00
parent 792b72bdd5
commit 9079254520
3 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,5 @@
7.6.0
- fixed: Project Manager sometimes causes errors when adding users to a task
- fixed: site navigation will sometimes show as half or not styled
- fixed: after editting assets from the asset manager, it returns to site instead of manager
- improved Rich Text selection list, changed CS and Wiki to use it

View file

@ -40,6 +40,7 @@ function hidePopWin() {
function showPopWin( e ) {
YAHOO.util.Event.stopEvent(e);
var link = YAHOO.util.Event.getTarget(e);
if(link == "") {

View file

@ -48,8 +48,7 @@ function taskEdit_updateResources(resources) {
var component = encodeURIComponent(resources.join(';'));
var url = document.location.toString();
var queryIndex = url.indexOf('?');
if (queryIndex > -1) url = url.substr(0, queryIndex);
url = url.replace(/[#\?].*/, '');
url += '?func=innerHtmlOfResources;resources=' + component;
taskEdit_updateExclude("taskEdit_resourceList_addUser_a", 'user', resources);
taskEdit_updateExclude("taskEdit_resourceList_addGroup_a", 'group', resources);