@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Show snippet of vote description in vote summary

Summary: This is editable now.

Test Plan: {F50208}

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Differential Revision: https://secure.phabricator.com/D6462

+5
+5
src/applications/slowvote/controller/PhabricatorSlowvoteListController.php
··· 53 53 ->setHref('/V'.$poll->getID()) 54 54 ->addIcon('none', $date_created); 55 55 56 + $description = $poll->getDescription(); 57 + if (strlen($description)) { 58 + $item->addAttribute(phutil_utf8_shorten($poll->getDescription(), 120)); 59 + } 60 + 56 61 if ($author) { 57 62 $item->addByline(pht('Author: %s', $author)); 58 63 }