Project

General

Profile

Actions

Backport(バックポート) #3173

closed

強制退会確認画面においてプロフィール項目がプリセットの場合、項目名が表示されない

Added by Yuma Sakata over 12 years ago. Updated over 12 years ago.

Status:
Fixed(完了)
Priority:
Normal(通常)
Target version:
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

111012-0001.png (34 KB) 111012-0001.png Maki Takahashi, 2011-10-12 20:22

Related issues 1 (0 open1 closed)

Related to OpenPNE 3 - Bug(バグ) #2486: 強制退会確認画面においてプロフィール項目がプリセットの場合、項目名が表示されないWon't fix(対応せず)Maki Takahashi2011-10-12

Actions
Actions #1

Updated by Yuma Sakata over 12 years ago

  • Status changed from Pending Testing(テスト待ち) to New(新規)
  • % Done changed from 70 to 0
Actions #2

Updated by Maki Takahashi over 12 years ago

  • Status changed from New(新規) to Pending Review(レビュー待ち)
  • % Done changed from 0 to 50

更新履歴 4870fa00461ea8e13d00b1bde5f9e418cc2d8fbc で適用されました。

Actions #3

Updated by Yuya Watanabe over 12 years ago

  • Status changed from Pending Review(レビュー待ち) to Pending Testing(テスト待ち)
  • % Done changed from 50 to 70
Actions #4

Updated by Yuma Sakata over 12 years ago

  • Status changed from Pending Testing(テスト待ち) to Fixed(完了)
  • % Done changed from 70 to 100

テストOKです。

Actions

Also available in: Atom PDF