Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/mobile_frontend/modules/album/templates/_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<?php echo link_to($album->Member->name, '@member_profile?id='.$album->Member->id) ?>
<?php echo link_to($album->title, 'album_show', $album) ?><br>
<center><?php echo link_to(image_tag_sf_image($album->getCoverImage(), array('width' => '80', 'size' => '120x120')), 'album_show', $album) ?></center>
<?php echo $album->body ?>
<?php echo op_truncate($album->body, 30, '', 3) ?><br>
<?php echo op_format_activity_time(strtotime($album->getCreatedAt())) ?>
<hr color="<?php echo $op_color["core_color_11"] ?>" size="3">
<?php endforeach; ?>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</tr>
<tr>
<th><?php echo __('Description') ?></th>
<td colspan="2"><?php echo $album->getBody() ?></td>
<td colspan="2"><?php echo op_truncate($album->getBody(), 36, '', 3) ?></td>
</tr>
<tr>
<th><?php echo __('Public Flag') ?></th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</tr>
<tr>
<th><?php echo __('Description') ?></th>
<td colspan="2"><?php echo $album->getBody() ?></td>
<td colspan="2"><?php echo op_truncate($album->getBody(), 36, '', 3) ?></td>
</tr>
<tr>
<th><?php echo __('Public flag') ?></th>
Expand Down