fix braindead bug in nodeIsQuery function in controller.js, make sure to return result. r=brettw

This commit is contained in:
beng%bengoodger.com 2005-12-14 18:36:43 +00:00
Родитель 9f1214086d
Коммит 60c66ac6ab
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -407,7 +407,7 @@ var PlacesController = {
* @returns true if the node is a Query item, false otherwise
*/
nodeIsQuery: function PC_nodeIsQuery(node) {
node.type == Ci.nsINavHistoryResultNode.RESULT_TYPE_QUERY;
return node.type == Ci.nsINavHistoryResultNode.RESULT_TYPE_QUERY;
},
/**