プロジェクト

全般

プロフィール

0001-refs-4206-truncate-long-description-in-list-page.-pc.patch

Shinichi Urabe, 2017-06-09 13:01

ダウンロード (1.56 KB)

差分を表示:

apps/pc_frontend/modules/album/templates/listFriendSuccess.php
17 17
</tr>
18 18
<tr>
19 19
<th><?php echo __('Description') ?></th>
20
<td colspan="2"><?php echo $album->getBody() ?></td>
20
<td colspan="2"><?php echo op_truncate($album->getBody(), 36, '', 3) ?></td>
21 21
</tr>
22 22
<tr>
23 23
<th><?php echo __('Public Flag') ?></th>
apps/pc_frontend/modules/album/templates/listMemberSuccess.php
24 24
</tr>
25 25
<tr>
26 26
<th><?php echo __('Description') ?></th>
27
<td colspan="2"><?php echo $album->getBody() ?></td>
27
<td colspan="2"><?php echo op_truncate($album->getBody(), 36, '', 3) ?></td>
28 28
</tr>
29 29
<tr>
30 30
<th><?php echo __('Public flag') ?></th>
31
-