diff options
author | martian <martian@ampache> | 2010-02-09 19:23:51 +0000 |
---|---|---|
committer | martian <martian@ampache> | 2010-02-09 19:23:51 +0000 |
commit | e7b036c4ebc91982fd0214c5608b3255b37cddd2 (patch) | |
tree | 32b4ab3f1a91b512e3d92e2e1a16237cdf59c105 /templates/show_album_row.inc.php | |
parent | 1b35c20dd0a93b143d8b9542743a743e0db66386 (diff) | |
download | ampache-e7b036c4ebc91982fd0214c5608b3255b37cddd2.tar.gz ampache-e7b036c4ebc91982fd0214c5608b3255b37cddd2.tar.bz2 ampache-e7b036c4ebc91982fd0214c5608b3255b37cddd2.zip |
fixed a failed attempt to limit tags shown
Diffstat (limited to 'templates/show_album_row.inc.php')
-rw-r--r-- | templates/show_album_row.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_album_row.inc.php b/templates/show_album_row.inc.php index 71a1afbc..0ec8f058 100644 --- a/templates/show_album_row.inc.php +++ b/templates/show_album_row.inc.php @@ -41,7 +41,7 @@ <td class="cel_artist"><?php echo $album->f_artist_link; ?></td> <td class="cel_songs"><?php echo $album->song_count; ?></td> <td class="cel_year"><?php echo $album->year; ?></td> -<td class="cel_tags"><?php echo (strlen($album->f_tags) > 20) ? substr($album->f_tags, 0, 20) . '&hellip' : $album->f_tags; ?></td> +<td class="cel_tags"><?php echo $album->f_tags; ?></td> <td class="cel_rating" id="rating_<?php echo $album->id; ?>_album"><?php Rating::show($album->id,'album'); ?></td> <td class="cel_action"> <a href="<?php echo Config::get('web_path'); ?>/shout.php?action=show_add_shout&type=album&id=<?php echo $album->id; ?>"> |