Skip to content
This repository has been archived by the owner on Oct 29, 2019. It is now read-only.

Commit

Permalink
WL-1027 Switch to displaying the short description.
Browse files Browse the repository at this point in the history
  • Loading branch information
buckett committed Aug 24, 2011
1 parent 5bf4466 commit 1c6c0e4
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -845,7 +845,7 @@ protected void printAnnouncementRss( OutputStream out, Reference rssRef )

// add description
el = doc.createElement("description");
String desc = (site.getDescription()!=null)?site.getDescription():site.getTitle();
String desc = (site.getShortDescription()!=null)?site.getShortDescription():site.getTitle();
el.appendChild(doc.createTextNode(desc));
channel.appendChild(el);

Expand Down

0 comments on commit 1c6c0e4

Please sign in to comment.