aboutsummaryrefslogtreecommitdiffstats
path: root/include/ItemObject.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/ItemObject.php')
-rw-r--r--include/ItemObject.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php
index e85461682..3035203f8 100644
--- a/include/ItemObject.php
+++ b/include/ItemObject.php
@@ -173,14 +173,14 @@ class Item extends BaseObject {
if($this->is_toplevel()) {
if($conv->get_profile_owner() == local_user()) {
- $isstarred = (($item['starred']) ? "starred" : "unstarred");
+ $isstarred = (($item['item_flags'] & ITEM_STARRED) ? "starred" : "unstarred");
$star = array(
'do' => t("add star"),
'undo' => t("remove star"),
'toggle' => t("toggle star status"),
- 'classdo' => (($item['starred']) ? "hidden" : ""),
- 'classundo' => (($item['starred']) ? "" : "hidden"),
+ 'classdo' => (($item['item_flags'] & ITEM_STARRED) ? "hidden" : ""),
+ 'classundo' => (($item['item_flags'] & ITEM_STARRED) ? "" : "hidden"),
'starred' => t('starred'),
'tagger' => t("add tag"),
'classtagger' => "",