Actions
Backport(バックポート) #3173
closed強制退会確認画面においてプロフィール項目がプリセットの場合、項目名が表示されない
Start date:
2011-10-12
Due date:
% Done:
100%
Estimated time:
Description
Overview (現象)¶
管理画面のメンバーを強制退会しようとする場合の確認画面において
プロフィール項目がプリセットの場合のみ項目名が表示されない。
Causes (原因)¶
強制退会確認画面のテンプレート(/apps/pc_backend/modules/member/templates/deleteSuccess.php)において
プロフィール項目名の表示が一律
<th><?php echo $profile->getCaption() ?></th>
となっているため、プリセットの場合は表示されない。
確認バージョン¶
OpenPNE 3.7.0-dev (master)
OpenPNE 3.6.1 (stable-3.6.x)
OpenPNE 3.4.17 (stable-3.4.x)
Way to fix (修正内容)¶
以下のようにプリセットとそれ以外で表示を分ける
<?php foreach ($member->getProfiles() as $profile): ?> <?php $profileObj = $profile->getProfile() ?> <tr> <?php if ($profileObj->isPreset()): ?> <?php $config = $profileObj->getPresetConfig(); ?> <th><?php echo __($config['Caption']) ?></th> <?php else: ?> <th><?php echo $profile->getCaption() ?></th> <?php endif; ?> <td><?php echo __($member->getProfile($profile->getName())) ?></td> </tr> <?php endforeach ?>
Files
Updated by Yuma Sakata over 12 years ago
- Status changed from Pending Testing(テスト待ち) to New(新規)
- % Done changed from 70 to 0
Updated by Maki Takahashi over 12 years ago
- Status changed from New(新規) to Pending Review(レビュー待ち)
- % Done changed from 0 to 50
更新履歴 4870fa00461ea8e13d00b1bde5f9e418cc2d8fbc で適用されました。
Updated by Yuya Watanabe over 12 years ago
- Status changed from Pending Review(レビュー待ち) to Pending Testing(テスト待ち)
- % Done changed from 50 to 70
Updated by Yuma Sakata over 12 years ago
- Status changed from Pending Testing(テスト待ち) to Fixed(完了)
- % Done changed from 70 to 100
テストOKです。
Actions