found a bug already

This commit is contained in:
Zach Prezkuta 2012-11-22 09:34:50 -07:00
parent a536a4e657
commit beec28cc62
1 changed files with 7 additions and 4 deletions

View File

@ -185,10 +185,13 @@ class Item extends BaseObject {
'classundo' => (($item['starred']) ? "" : "hidden"), 'classundo' => (($item['starred']) ? "" : "hidden"),
'starred' => t('starred'), 'starred' => t('starred'),
); );
$tagger = array( $tagger = '';
'add' => ((feature_enabled($conv->get_profile_owner(),'commtag')) ? t("add tag") : ''), if(feature_enabled($conv->get_profile_owner(),'commtag')) {
'class' => "", $tagger = array(
); 'add' => t("add tag"),
'class' => "",
);
}
} }
} else { } else {
$indent = 'comment'; $indent = 'comment';