diff options
| author | 2014-10-05 16:10:25 +0200 | |
|---|---|---|
| committer | 2014-10-05 16:10:25 +0200 | |
| commit | c8fad68a4fd15857a2e3e21e7d5311dc7f87226c (patch) | |
| tree | 063d7683f30ec35e544fcc5e38048d0d0a7dca75 /app/views/entry/read.phtml | |
| parent | 6c8b36f04ea1bc2c022c331bb0980b6c9dccb83c (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-x | app/views/entry/read.phtml | 2 |
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 ('&', '&', $url), 'icon' => FreshRSS_Themes::icon(Minz_Request::param ('is_read') ? 'unread' : 'read'))); +echo json_encode (array ('url' => str_ireplace ('&', '&', $url), 'icon' => _i(Minz_Request::param ('is_read') ? 'unread' : 'read'))); |
