aboutsummaryrefslogtreecommitdiffstats
path: root/include/widgets.php
diff options
context:
space:
mode:
authorTreer <treer.git@the-bordello.com>2016-05-01 04:39:57 +1000
committerTreer <treer.git@the-bordello.com>2016-05-01 04:39:57 +1000
commit8f16e9ad33e17fcdf5c0b4586b384ea12eeb0716 (patch)
treee9505358c6a855da8d5d8d84cfe1db3dfa3e2db6 /include/widgets.php
parent7d380570df62b3f90daf197a1044d45e073c97a7 (diff)
downloadvolse-hubzilla-8f16e9ad33e17fcdf5c0b4586b384ea12eeb0716.tar.gz
volse-hubzilla-8f16e9ad33e17fcdf5c0b4586b384ea12eeb0716.tar.bz2
volse-hubzilla-8f16e9ad33e17fcdf5c0b4586b384ea12eeb0716.zip
update icon names in include/
Diffstat (limited to 'include/widgets.php')
-rw-r--r--include/widgets.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/widgets.php b/include/widgets.php
index 0355ebd8c..fa92901ae 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -1203,12 +1203,12 @@ function widget_rating($arr) {
if((($remote) || (local_channel())) && (! $self)) {
if($remote)
- $o .= '<a class="btn btn-block btn-primary btn-sm" href="' . $url . '"><i class="icon-pencil"></i> ' . t('Rate Me') . '</a>';
+ $o .= '<a class="btn btn-block btn-primary btn-sm" href="' . $url . '"><i class="fa fa-pencil"></i> ' . t('Rate Me') . '</a>';
else
- $o .= '<div class="btn btn-block btn-primary btn-sm" onclick="doRatings(\'' . $hash . '\'); return false;"><i class="icon-pencil"></i> ' . t('Rate Me') . '</div>';
+ $o .= '<div class="btn btn-block btn-primary btn-sm" onclick="doRatings(\'' . $hash . '\'); return false;"><i class="fa fa-pencil"></i> ' . t('Rate Me') . '</div>';
}
- $o .= '<a class="btn btn-block btn-default btn-sm" href="ratings/' . $hash . '"><i class="icon-eye-open"></i> ' . t('View Ratings') . '</a>';
+ $o .= '<a class="btn btn-block btn-default btn-sm" href="ratings/' . $hash . '"><i class="fa fa-eye"></i> ' . t('View Ratings') . '</a>';
$o .= '</div>';
return $o;