From 8f16e9ad33e17fcdf5c0b4586b384ea12eeb0716 Mon Sep 17 00:00:00 2001 From: Treer Date: Sun, 1 May 2016 04:39:57 +1000 Subject: update icon names in include/ --- include/ItemObject.php | 4 ++-- include/conversation.php | 2 +- include/event.php | 2 +- include/text.php | 52 ++++++++++++++++++++++++------------------------ include/widgets.php | 6 +++--- view/tpl/item_attach.tpl | 2 +- 6 files changed, 34 insertions(+), 34 deletions(-) diff --git a/include/ItemObject.php b/include/ItemObject.php index 9d5acd95f..019fa87ad 100644 --- a/include/ItemObject.php +++ b/include/ItemObject.php @@ -75,7 +75,7 @@ class Item extends BaseObject { $buttons = ''; $dropping = false; $star = false; - $isstarred = "unstarred icon-star-empty"; + $isstarred = "unstarred fa-star-o"; $indent = ''; $osparkle = ''; $total_children = $this->count_descendants(); @@ -214,7 +214,7 @@ class Item extends BaseObject { 'toggle' => t("Toggle Star Status"), 'classdo' => (intval($item['item_starred']) ? "hidden" : ""), 'classundo' => (intval($item['item_starred']) ? "" : "hidden"), - 'isstarred' => (intval($item['item_starred']) ? "starred icon-star" : "unstarred icon-star-empty"), + 'isstarred' => (intval($item['item_starred']) ? "starred fa-star" : "unstarred fa-star-o"), 'starred' => t('starred'), ); diff --git a/include/conversation.php b/include/conversation.php index b1b47df39..94f1e7da7 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -658,7 +658,7 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ ); $star = false; - $isstarred = "unstarred icon-star-empty"; + $isstarred = "unstarred fa-star-o"; $lock = (($item['item_private'] || strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid'])) ? t('Private Message') diff --git a/include/event.php b/include/event.php index 7a99bc746..e54a172c2 100644 --- a/include/event.php +++ b/include/event.php @@ -25,7 +25,7 @@ function format_event_html($ev) { $o = '
' . "\r\n"; - $o .= '

 ' . bbcode($ev['summary']) . '

' . "\r\n"; + $o .= '

 ' . bbcode($ev['summary']) . '

' . "\r\n"; $o .= '
' . t('Starts:') . '  ' . t('Rate Me') . ''; + $o .= ' ' . t('Rate Me') . ''; else - $o .= '
' . t('Rate Me') . '
'; + $o .= '
' . t('Rate Me') . '
'; } - $o .= ' ' . t('View Ratings') . ''; + $o .= ' ' . t('View Ratings') . ''; $o .= '
'; return $o; diff --git a/view/tpl/item_attach.tpl b/view/tpl/item_attach.tpl index 67accc1ec..83cc9a3cd 100644 --- a/view/tpl/item_attach.tpl +++ b/view/tpl/item_attach.tpl @@ -1,5 +1,5 @@ {{if $attaches}} {{foreach $attaches as $a}} -
  •  {{$a.label}}
  • +
  •  {{$a.label}}
  • {{/foreach}} {{/if}} -- cgit v1.2.3