fix for bug #379552: when I drop a page with no title onto the personal toolbar, we should use the uri as the title.

r=mano
This commit is contained in:
sspitzer%mozilla.org 2007-05-03 14:37:11 +00:00
Родитель 3c2966471b
Коммит c6174a3373
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -605,7 +605,7 @@ var PlacesUtils = {
if (i > (parts.length - 2))
break;
nodes.push({ uri: this._uri(parts[i++]),
title: parts[i] });
title: parts[i] ? parts[i] : parts[i-1] });
break;
case this.TYPE_UNICODE:
// See above.