aboutsummaryrefslogtreecommitdiff
path: root/app/views/entry/read.phtml
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-05 16:10:25 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-05 16:10:25 +0200
commitc8fad68a4fd15857a2e3e21e7d5311dc7f87226c (patch)
tree063d7683f30ec35e544fcc5e38048d0d0a7dca75 /app/views/entry/read.phtml
parent6c8b36f04ea1bc2c022c331bb0980b6c9dccb83c (diff)
Use _i() whenever it is possible
Transform FreshRSS_Themes::icon\s? in _i See https://github.com/marienfressinaud/FreshRSS/issues/655
Diffstat (limited to 'app/views/entry/read.phtml')
-rwxr-xr-xapp/views/entry/read.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/entry/read.phtml b/app/views/entry/read.phtml
index 9e79d4c07..0ef9df7eb 100755
--- a/app/views/entry/read.phtml
+++ b/app/views/entry/read.phtml
@@ -13,4 +13,4 @@ $url = Minz_Url::display (array (
'params' => Minz_Request::params (),
));
-echo json_encode (array ('url' => str_ireplace ('&amp;', '&', $url), 'icon' => FreshRSS_Themes::icon(Minz_Request::param ('is_read') ? 'unread' : 'read')));
+echo json_encode (array ('url' => str_ireplace ('&amp;', '&', $url), 'icon' => _i(Minz_Request::param ('is_read') ? 'unread' : 'read')));