From: wolfgang Date: Mon, 17 Dec 2007 17:44:59 +0000 (+0000) Subject: git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1306 d1b88da0-ebda-0310... X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=897a174e4797312095acf019f21005e4ed2f6533;p=scalable-opengroupware.org git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1306 d1b88da0-ebda-0310-925b-ed51d893ca5b --- diff --git a/SoObjects/Appointments/SOGoAptMailFrenchUpdate.wo/SOGoAptMailFrenchUpdate.html b/SoObjects/Appointments/SOGoAptMailFrenchUpdate.wo/SOGoAptMailFrenchUpdate.html index c008d380..e23d83fa 100644 --- a/SoObjects/Appointments/SOGoAptMailFrenchUpdate.wo/SOGoAptMailFrenchUpdate.html +++ b/SoObjects/Appointments/SOGoAptMailFrenchUpdate.wo/SOGoAptMailFrenchUpdate.html @@ -1,5 +1,5 @@ <#IsSubject>Rendez-vous du <#OldAptStartDate /> à <#OldAptStartTime /> modifié <#IsBody> La réunion qui devait se dérouler le <#OldAptStartDate /> à <#OldAptStartTime /> est maintenant prévue le <#NewAptStartDate /> à <#NewAptStartTime />. -Vous êtes invité à accepter ou refuser de participer à la réunion pour cette nouvelle date à l'adresse <#HomePageURL />. +Vous êtes invité à accepter ou refuser de participer à la réunion pour cette nouvelle date à l'adresse <#HomePageURL />. diff --git a/UI/WebServerResources/ContactsUI.js b/UI/WebServerResources/ContactsUI.js index 21c9872f..5b6599c8 100644 --- a/UI/WebServerResources/ContactsUI.js +++ b/UI/WebServerResources/ContactsUI.js @@ -386,7 +386,7 @@ function uixDeleteSelectedContacts(sender) { } var contactView = $('contactView'); - contactView.innerHTML = ''; + contactView.update(); for (var i = 0; i < rows.length; i++) { var url, http, rowElem; @@ -459,10 +459,17 @@ function newContact(sender) { return false; /* stop following the link */ } -function onFolderSelectionChange() { +function onFolderSelectionChange(event) { var folderList = $("contactFolders"); var nodes = folderList.getSelectedNodes(); - $("contactView").innerHTML = ''; + + if (event) { + var node = getTarget(event); + if (node.tagName == 'UL') + return; + } + + $("contactView").update(); if (nodes[0].hasClassName("denied")) { var div = $("contactsListContent");