diff options
| author | modela bitweaver <spiderr@bitweaver.org> | 2017-07-03 23:22:46 -0400 |
|---|---|---|
| committer | modela bitweaver <spiderr@bitweaver.org> | 2017-07-03 23:22:46 -0400 |
| commit | b93c5f350796efeee07db380acd23fc35882d730 (patch) | |
| tree | 4a3fe070b2f7b581c36748500e631b777af03c97 | |
| parent | 9d0c9cd6d911b5b0d06adbb253418b812a5a3a7f (diff) | |
| download | pigeonholes-b93c5f350796efeee07db380acd23fc35882d730.tar.gz pigeonholes-b93c5f350796efeee07db380acd23fc35882d730.tar.bz2 pigeonholes-b93c5f350796efeee07db380acd23fc35882d730.zip | |
fix getDisplayLink
| -rw-r--r-- | Pigeonholes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Pigeonholes.php b/Pigeonholes.php index 2ce9f2d..24c3eab 100644 --- a/Pigeonholes.php +++ b/Pigeonholes.php @@ -198,7 +198,7 @@ class Pigeonholes extends LibertyMime { } if( $type['content_object']->isViewable( $aux['content_id'] )) { $aux['display_url'] = $type['content_object']->getDisplayUrlFromHash( $aux ); - $aux['display_link'] = $type['content_object']->getDisplayLink( $aux['title'], $aux ); + $aux['display_link'] = $type['content_object']->getDisplayLink( $aux ); $aux['title'] = $type['content_object']->getTitleFromHash( $aux ); // needs updating to bw3 $aux['thumbnail_url'] = liberty_fetch_thumbnails( array()); $ret[] = $aux; |
