feedapi.module lines 699 and 710;

$node->feed->checked == 0 ? t('Never') : format_interval(time() - $node->feed->checked) ." ". t("ago"),

should be like following;

$node->feed->checked == 0 ? t('Never') : t('%time ago', array('%time' => format_interval(time() - $node->feed->checked))),

Comments

aron novak’s picture

Status: Needs review » Fixed

Thanks, good improvement!

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.