diff options
| author | 2014-02-23 21:55:45 +0100 | |
|---|---|---|
| committer | 2014-02-23 21:55:45 +0100 | |
| commit | 166009f3623213249086038f7af72a76507f60dc (patch) | |
| tree | 444f74b3a2d2465d9c54b65183297549528610a1 /app/views | |
| parent | 86846e7b97acb44a2ea0460d7951f7ef90558afd (diff) | |
Sharing: Compatibility 0.7
https://github.com/marienfressinaud/FreshRSS/pull/433
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/configure/sharing.phtml | 2 | ||||
| -rw-r--r-- | app/views/helpers/view/normal_view.phtml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/configure/sharing.phtml b/app/views/configure/sharing.phtml index e46284955..b50e6ddc4 100644 --- a/app/views/configure/sharing.phtml +++ b/app/views/configure/sharing.phtml @@ -48,4 +48,4 @@ </div> </div> </form> -</div>
\ No newline at end of file +</div> diff --git a/app/views/helpers/view/normal_view.phtml b/app/views/helpers/view/normal_view.phtml index f27984025..ff535c60a 100644 --- a/app/views/helpers/view/normal_view.phtml +++ b/app/views/helpers/view/normal_view.phtml @@ -138,7 +138,7 @@ if (!empty($this->entries)) { <?php foreach ($sharing as $share) :?> <li class="item share"> <a target="_blank" href="<?php echo FreshRSS_Share::generateUrl($this->conf->shares, $share, $item->link(), $item->title() . ' . ' . $feed->name())?>"> - <?php echo (array_key_exists('name', $share)) ? $share['name'] : Minz_Translate::t ($share['type']);?> + <?php echo array_key_exists('name', $share) ? $share['name'] : Minz_Translate::t ($share['type']);?> </a> </li> <?php endforeach;?> |
