projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
98f49c7
)
Fix title generation (need full display name, not last part).
author
Michael M Slusarz
<slusarz@curecanti.org>
Fri, 27 Feb 2009 18:49:16 +0000
(11:49 -0700)
committer
Michael M Slusarz
<slusarz@curecanti.org>
Fri, 27 Feb 2009 18:50:06 +0000
(11:50 -0700)
imp/js/src/DimpBase.js
patch
|
blob
|
history
diff --git
a/imp/js/src/DimpBase.js
b/imp/js/src/DimpBase.js
index
e3ae8ad
..
ac295b6
100644
(file)
--- a/
imp/js/src/DimpBase.js
+++ b/
imp/js/src/DimpBase.js
@@
-762,15
+762,13
@@
var DimpBase = {
if (this.viewport.isFiltering()) {
label = DIMP.text.search + ' :: ' + (this.viewport.getMetaData('total_rows') || 0) + ' ' + DIMP.text.resfound;
} else {
+ label = this.viewport.getMetaData('label');
elt = $(this.getFolderId(this.folder));
if (elt) {
unseen = elt.readAttribute('u');
- label = elt.readAttribute('l');
if (unseen > 0) {
label += ' (' + unseen + ')';
}
- } else {
- label = this.viewport.getMetaData('label');
}
}
DimpCore.setTitle(label);