diff options
author | friendica <info@friendica.com> | 2013-10-08 21:17:11 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-08 21:17:11 -0700 |
commit | 0e793dea9bfc21a7c1c369d1db727d7ff900c90a (patch) | |
tree | fbf2386dcd88f2d7d4429f8f5daca96d398c5f3f /include/ItemObject.php | |
parent | f8d34a2aafafd35858aac3ae19b6a56c67f4c5e9 (diff) | |
download | volse-hubzilla-0e793dea9bfc21a7c1c369d1db727d7ff900c90a.tar.gz volse-hubzilla-0e793dea9bfc21a7c1c369d1db727d7ff900c90a.tar.bz2 volse-hubzilla-0e793dea9bfc21a7c1c369d1db727d7ff900c90a.zip |
replace a bunch of graphic icons with vector icons
Diffstat (limited to 'include/ItemObject.php')
-rw-r--r-- | include/ItemObject.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ItemObject.php b/include/ItemObject.php index bf55b484a..df9386232 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -75,7 +75,7 @@ class Item extends BaseObject { $buttons = ''; $dropping = false; $star = false; - $isstarred = "unstarred"; + $isstarred = "unstarred icon-star-empty"; $indent = ''; $osparkle = ''; $total_children = $this->count_descendants(); @@ -147,7 +147,7 @@ class Item extends BaseObject { 'toggle' => t("toggle star status"), 'classdo' => (($item['item_flags'] & ITEM_STARRED) ? "hidden" : ""), 'classundo' => (($item['item_flags'] & ITEM_STARRED) ? "" : "hidden"), - 'isstarred' => (($item['item_flags'] & ITEM_STARRED) ? "starred" : "unstarred"), + 'isstarred' => (($item['item_flags'] & ITEM_STARRED) ? "starred icon-star" : "unstarred icon-star-empty"), 'starred' => t('starred'), ); |