expose content via aRawReps for the benefit of other plugins. (regression fix)

--HG--
branch : gloda-facet
This commit is contained in:
Andrew Sutherland 2009-09-08 13:44:01 -07:00
Родитель c09e9852e1
Коммит 817256662c
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -657,11 +657,14 @@ var GlodaFundAttr = {
// Content // Content
if (aRawReps.bodyLines) { if (aRawReps.bodyLines) {
aGlodaMessage._content = new GlodaContent(); aGlodaMessage._content = aRawReps.content = new GlodaContent();
if (this.contentWhittle({}, aRawReps.bodyLines, aGlodaMessage._content)) { if (this.contentWhittle({}, aRawReps.bodyLines, aGlodaMessage._content)) {
// we were going to do something here? // we were going to do something here?
} }
} }
else {
aRawReps.content = null;
}
yield Gloda.kWorkDone; yield Gloda.kWorkDone;
}, },