Strip the same characters before sorting titles in reports that we do in the items list

This commit is contained in:
Dan Stillman 2008-05-24 08:59:40 +00:00
parent 4429a193ce
commit 01b0e841f1

View File

@ -343,6 +343,9 @@ function ChromeExtensionHandler() {
else {
valB = b.title;
}
valA = Zotero.Items.getSortTitle(valA);
valB = Zotero.Items.getSortTitle(valB);
}
else {
var valA = a[sorts[index].field];