commit 75d5d9f88ddde7a8f0c93b77a754e6014f1cbb1a
parent b55f22690071111bfc1147bd8430240edb00c001
Author: Dan Stillman <dstillman@zotero.org>
Date: Mon, 15 Jul 2013 19:54:29 -0400
Add Publication Title to title/creator/year search
As requested by Simon
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/chrome/content/zotero/xpcom/search.js b/chrome/content/zotero/xpcom/search.js
@@ -418,6 +418,7 @@ Zotero.Search.prototype.addCondition = function(condition, operator, value, requ
if (condition == 'quicksearch-titleCreatorYear') {
this.addCondition('title', operator, part.text, false);
+ this.addCondition('publicationTitle', operator, part.text, false);
this.addCondition('year', operator, part.text, false);
}
else {