diff options
| author | 2014-12-17 21:24:49 +0100 | |
|---|---|---|
| committer | 2014-12-17 21:25:20 +0100 | |
| commit | 930026df2159b027bc035f4ed15c39a43eb0e9fe (patch) | |
| tree | 869efcd322b4bea510de7644508c86ce836dc011 /app/views/helpers/index/normal/entry_bottom.phtml | |
| parent | 76358846abe2eba95668d66d3847cbdfe3f8bcdc (diff) | |
Fix bug with new file organisation
entry_bottom.phtml didn't find $feed variable. It's fixed now.
Diffstat (limited to 'app/views/helpers/index/normal/entry_bottom.phtml')
| -rw-r--r-- | app/views/helpers/index/normal/entry_bottom.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/helpers/index/normal/entry_bottom.phtml b/app/views/helpers/index/normal/entry_bottom.phtml index 704644f99..e1961e2aa 100644 --- a/app/views/helpers/index/normal/entry_bottom.phtml +++ b/app/views/helpers/index/normal/entry_bottom.phtml @@ -36,7 +36,7 @@ <li class="item"><?php if ($bottomline_sharing) { $link = urlencode($this->entry->link()); - $title = urlencode($this->entry->title() . ' · ' . $feed->name()); + $title = urlencode($this->entry->title() . ' · ' . $this->feed->name()); ?><div class="dropdown"> <div id="dropdown-share-<?php echo $this->entry->id();?>" class="dropdown-target"></div> <a class="dropdown-toggle" href="#dropdown-share-<?php echo $this->entry->id();?>"> @@ -48,7 +48,7 @@ <li class="dropdown-close"><a href="#close">❌</a></li> <?php foreach ($sharing as $share) :?> <li class="item share"> - <a target="_blank" href="<?php echo FreshRSS_Share::generateUrl(FreshRSS_Context::$conf->shares, $share, $this->entry->link(), $this->entry->title() . ' . ' . $feed->name())?>"> + <a target="_blank" href="<?php echo FreshRSS_Share::generateUrl(FreshRSS_Context::$conf->shares, $share, $this->entry->link(), $this->entry->title() . ' . ' . $this->feed->name())?>"> <?php echo _t($share['name']);?> </a> </li> |
