Changeset 7233
- Timestamp:
- May 15, 2008, 8:14:17 PM (13 years ago)
- Location:
- OpenPNE/trunk
- Files:
-
- 35 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/trunk/webapp/modules/admin/templates/commu_list.tpl
r6410 r7233 94 94 ({/if}) 95 95 ({if $smarty.const.OPENPNE_ADMIN_CONVERT_URL}) 96 ({$item.info|nl2br|t_url2cmd:'community' |t_cmd:'community'})96 ({$item.info|nl2br|t_url2cmd:'community':$item.c_member_id_admin|t_cmd:'community'}) 97 97 ({else}) 98 98 ({$item.info|nl2br}) -
OpenPNE/trunk/webapp/modules/admin/templates/delete_commu.tpl
r6410 r7233 56 56 ({/if}) 57 57 ({if $smarty.const.OPENPNE_ADMIN_CONVERT_URL}) 58 ({$commu.info|nl2br|t_url2cmd:'community' |t_cmd:'community'})58 ({$commu.info|nl2br|t_url2cmd:'community':$commu.c_member_id_admin|t_cmd:'community'}) 59 59 ({else}) 60 60 ({$commu.info|nl2br}) -
OpenPNE/trunk/webapp/modules/admin/templates/delete_diary.tpl
r6402 r7233 58 58 ({/if}) 59 59 ({if $smarty.const.OPENPNE_ADMIN_CONVERT_URL}) 60 ({$diary.body|nl2br|t_url2cmd:'diary' |t_cmd:'diary'})60 ({$diary.body|nl2br|t_url2cmd:'diary':$diary.c_member_id|t_cmd:'diary'}) 61 61 ({else}) 62 62 ({$diary.body|nl2br}) -
OpenPNE/trunk/webapp/modules/admin/templates/delete_diary_comment.tpl
r6402 r7233 58 58 ({/if}) 59 59 ({if $smarty.const.OPENPNE_ADMIN_CONVERT_URL}) 60 ({$diary_comment.body|nl2br|t_url2cmd:'diary' |t_cmd:'diary'})60 ({$diary_comment.body|nl2br|t_url2cmd:'diary':$diary_comment.$c_member_id|t_cmd:'diary'}) 61 61 ({else}) 62 62 ({$diary_comment.body|nl2br}) -
OpenPNE/trunk/webapp/modules/admin/templates/delete_topic.tpl
r6410 r7233 66 66 ({/if}) 67 67 ({if $smarty.const.OPENPNE_ADMIN_CONVERT_URL}) 68 ({$topic.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})68 ({$topic.body|nl2br|t_url2cmd:'community':$topic.c_member_id|t_cmd:'community'}) 69 69 ({else}) 70 70 ({$topic.body|nl2br}) -
OpenPNE/trunk/webapp/modules/admin/templates/delete_topic_comment.tpl
r6534 r7233 66 66 ({/if}) 67 67 ({if $smarty.const.OPENPNE_ADMIN_CONVERT_URL}) 68 ({$topic_comment.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})68 ({$topic_comment.body|nl2br|t_url2cmd:'community':$topic_comment.c_member_id|t_cmd:'community'}) 69 69 ({else}) 70 70 ({$topic_comment.body|nl2br}) -
OpenPNE/trunk/webapp/modules/admin/templates/diary_comment_list.tpl
r6527 r7233 104 104 ({/if}) 105 105 ({if $smarty.const.OPENPNE_ADMIN_CONVERT_URL}) 106 ({$item.body|nl2br|t_url2cmd:'diary' |t_cmd:'diary'})106 ({$item.body|nl2br|t_url2cmd:'diary':$item.c_member_id|t_cmd:'diary'}) 107 107 ({else}) 108 108 ({$item.body|nl2br}) -
OpenPNE/trunk/webapp/modules/admin/templates/topic_comment_list.tpl
r6534 r7233 106 106 ({/if}) 107 107 ({if $smarty.const.OPENPNE_ADMIN_CONVERT_URL}) 108 ({$item.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})108 ({$item.body|nl2br|t_url2cmd:'community':$item.c_member_id|t_cmd:'community'}) 109 109 ({else}) 110 110 ({$item.body|nl2br}) -
OpenPNE/trunk/webapp/modules/admin/templates/topic_list.tpl
r6527 r7233 106 106 ({/if}) 107 107 ({if $smarty.const.OPENPNE_ADMIN_CONVERT_URL}) 108 ({$item.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})108 ({$item.body|nl2br|t_url2cmd:'community':$item.c_member_id|t_cmd:'community'}) 109 109 ({else}) 110 110 ({$item.body|nl2br}) -
OpenPNE/trunk/webapp/modules/pc/init.inc
r7206 r7233 70 70 $u = $GLOBALS['AUTH']->uid(); 71 71 $smarty->assign('C_MEMBER_CONFIG', util_get_c_member_config($u)); 72 $smarty->assign('u', $u); 72 73 } 73 74 -
OpenPNE/trunk/webapp/modules/pc/page/c_edit.php
r6630 r7233 70 70 71 71 $this->set('is_unused_join_commu', util_is_unused_mail('m_pc_join_commu')); 72 $this->set('u', $u);73 72 74 73 return 'success'; -
OpenPNE/trunk/webapp/modules/pc/page/c_edit_member.php
r6775 r7233 42 42 $this->set("page", $page); 43 43 44 $this->set("u", $u);45 46 44 return 'success'; 47 45 } -
OpenPNE/trunk/webapp/modules/pc/page/c_member_review.php
r6775 r7233 31 31 $this->set('c_commu', $c_commu); 32 32 $this->set("is_c_commu_member", db_commu_is_c_commu_member($c_commu_id, $u)); 33 $this->set('u', $u);34 33 35 34 return 'success'; -
OpenPNE/trunk/webapp/modules/pc/page/f_show_image.php
r4933 r7233 20 20 21 21 $this->set('inc_navi', fetch_inc_navi("f", $target_c_member_id)); 22 $this->set("u", $u);23 22 24 23 //メンバー情報 -
OpenPNE/trunk/webapp/modules/pc/page/h_message_box.php
r6630 r7233 25 25 26 26 $this->set('inc_navi', fetch_inc_navi("h")); 27 28 $this->set('u', $u);29 27 30 28 // 1ページ当たりに表示するメッセージ数 -
OpenPNE/trunk/webapp/modules/pc/templates/c_event_add_confirm.tpl
r6014 r7233 12 12 <tr><th>開催日時</th><td>({$event.open_date_year})年({$event.open_date_month})月({$event.open_date_day})日 ({$event.open_date_comment})</td></tr> 13 13 <tr><th>開催場所</th><td>({$event.open_pref_value}) ({$event.open_pref_comment})</td></tr> 14 <tr><th>詳細</th><td>({$event.detail|nl2br|t_url2cmd:'community' |t_cmd:'community'})</td></tr>14 <tr><th>詳細</th><td>({$event.detail|nl2br|t_url2cmd:'community':$u|t_cmd:'community'})</td></tr> 15 15 <tr><th>募集期限</th><td> 16 16 ({if $event.invite_period_year&&$event.invite_period_month&&$event.invite_period_day}) -
OpenPNE/trunk/webapp/modules/pc/templates/c_event_detail.tpl
r7224 r7233 46 46 </tr><tr> 47 47 <th>詳細</th> 48 <td>({$c_topic.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})</td>48 <td>({$c_topic.body|nl2br|t_url2cmd:'community':$c_topic.c_member_id|t_cmd:'community'})</td> 49 49 </tr><tr> 50 50 <th>募集期限</th> … … 139 139 </ul> 140 140 ({/if}) 141 <p class="text">({$item.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})</p>141 <p class="text">({$item.body|nl2br|t_url2cmd:'community':$item.c_member_id|t_cmd:'community'})</p> 142 142 </div> 143 143 </dd> -
OpenPNE/trunk/webapp/modules/pc/templates/c_event_mail_confirm.tpl
r6316 r7233 17 17 </div> 18 18 </td></tr> 19 <tr><th>メッセージ</th><td>({$body|nl2br|t_url2cmd:'message' |t_cmd:'message'})</td></tr>19 <tr><th>メッセージ</th><td>({$body|nl2br|t_url2cmd:'message':$u|t_cmd:'message'})</td></tr> 20 20 </table> 21 21 <div class="operation"> -
OpenPNE/trunk/webapp/modules/pc/templates/c_event_write_confirm.tpl
r6014 r7233 9 9 </div> 10 10 <table> 11 <tr><th>本文</th><td>({$event_write.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})</td></tr>11 <tr><th>本文</th><td>({$event_write.body|nl2br|t_url2cmd:'community':$u|t_cmd:'community'})</td></tr> 12 12 ({if $event_write.image_filename1}) 13 13 <tr><th>写真1</th><td>({$event_write.image_filename1})</td></tr> -
OpenPNE/trunk/webapp/modules/pc/templates/c_event_write_delete_confirm.tpl
r6130 r7233 7 7 8 8 <table> 9 <tr><th></th><td>({$c_commu_topic_comment.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})</td></tr>9 <tr><th></th><td>({$c_commu_topic_comment.body|nl2br|t_url2cmd:'community':$c_commu_topic_comment.c_member_id|t_cmd:'community'})</td></tr> 10 10 </table> 11 11 -
OpenPNE/trunk/webapp/modules/pc/templates/c_home.tpl
r7154 r7233 133 133 ({/if}) 134 134 </td></tr> 135 <tr><th>({$WORD_COMMUNITY})<br />説明文</th><td>({$c_commu.info|nl2br|t_url2cmd:'community' |t_cmd:'community'})</td></tr>135 <tr><th>({$WORD_COMMUNITY})<br />説明文</th><td>({$c_commu.info|nl2br|t_url2cmd:'community':$c_commu.c_member_id_admin|t_cmd:'community'})</td></tr> 136 136 ({if $is_c_commu_member || $c_commu.public_flag != "auth_commu_member"}) 137 137 ({if $new_topic_comment}) -
OpenPNE/trunk/webapp/modules/pc/templates/c_topic_add_confirm.tpl
r6014 r7233 10 10 <table> 11 11 <tr><th>タイトル</th><td>({$c_topic.title})</td></tr> 12 <tr><th>本文</th><td>({$c_topic.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})</td></tr>12 <tr><th>本文</th><td>({$c_topic.body|nl2br|t_url2cmd:'community':$u|t_cmd:'community'})</td></tr> 13 13 ({if $c_topic.image_filename1}) 14 14 <tr><th>写真1</th><td>({$c_topic.image_filename1})</td></tr> -
OpenPNE/trunk/webapp/modules/pc/templates/c_topic_detail.tpl
r7224 r7233 27 27 ({/if}) 28 28 <p class="text"> 29 ({$c_topic.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})29 ({$c_topic.body|nl2br|t_url2cmd:'community':$c_topic.c_member_id|t_cmd:'community'}) 30 30 </p> 31 31 </div> … … 105 105 </ul> 106 106 ({/if}) 107 <p class="text">({$item.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})</p>107 <p class="text">({$item.body|nl2br|t_url2cmd:'community':$item.c_member_id|t_cmd:'community'})</p> 108 108 </div> 109 109 ({if $item.filename && $smarty.const.OPENPNE_USE_FILEUPLOAD}) -
OpenPNE/trunk/webapp/modules/pc/templates/c_topic_write_confirm.tpl
r6531 r7233 9 9 </div> 10 10 <table> 11 <tr><th>本文</th><td>({$topic_write.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})</td></tr>11 <tr><th>本文</th><td>({$topic_write.body|nl2br|t_url2cmd:'community':$u|t_cmd:'community'})</td></tr> 12 12 ({if $topic_write.image_filename1}) 13 13 <tr><th>写真1</th><td>({$topic_write.image_filename1})</td></tr> -
OpenPNE/trunk/webapp/modules/pc/templates/c_topic_write_delete_confirm.tpl
r6532 r7233 13 13 ({if $c_commu_topic_comment.image_filename3})<img src="({t_img_url filename=$c_commu_topic_comment.image_filename3 w=120 h=120})" alt="" />({/if}) 14 14 <br />({/if})<br /> 15 ({$c_commu_topic_comment.body|nl2br|t_url2cmd:'community' |t_cmd:'community'})15 ({$c_commu_topic_comment.body|nl2br|t_url2cmd:'community':$c_member.c_member_id|t_cmd:'community'}) 16 16 </td></tr> 17 17 ({if $smarty.const.OPENPNE_USE_FILEUPLOAD}) -
OpenPNE/trunk/webapp/modules/pc/templates/f_message_send_confirm.tpl
r6536 r7233 23 23 <tr> 24 24 <th>メッセージ</th> 25 <td>({$form_val.body|nl2br|t_url2cmd:'message' |t_cmd:'message'})</td>25 <td>({$form_val.body|nl2br|t_url2cmd:'message':$u|t_cmd:'message'})</td> 26 26 </tr> 27 27 ({if $form_val.upfile_1.name}) -
OpenPNE/trunk/webapp/modules/pc/templates/fh_delete_comment.tpl
r6189 r7233 12 12 <div class="title"> 13 13 <p class="heading"><strong>({$target_diary_comment.number})</strong>: <a href="({t_url m=pc a=page_f_home})&target_c_member_id=({$target_diary_comment.c_member_id})">({$target_diary_comment.nickname|default:""})</a><br /> 14 ({$target_diary_comment.body|nl2br|default:" "|t_url2cmd:'diary' |t_cmd:'diary'})<br /></p>14 ({$target_diary_comment.body|nl2br|default:" "|t_url2cmd:'diary':$target_diary_comment.c_member_id|t_cmd:'diary'})<br /></p> 15 15 </div> 16 16 </dd> -
OpenPNE/trunk/webapp/modules/pc/templates/fh_diary.tpl
r7224 r7233 190 190 </ul> 191 191 ({/if}) 192 <p class="text">({$item.body|nl2br|t_url2cmd:'diary' |t_cmd:'diary'})</p>192 <p class="text">({$item.body|nl2br|t_url2cmd:'diary':$item.c_member_id|t_cmd:'diary'})</p> 193 193 </div> 194 194 </dd> -
OpenPNE/trunk/webapp/modules/pc/templates/fh_diary_comment_confirm.tpl
r6402 r7233 9 9 </div> 10 10 <table> 11 <tr><th>本文</th><td>({$form_val.body|nl2br|t_url2cmd:'diary' |t_cmd:'diary'})</td></tr>11 <tr><th>本文</th><td>({$form_val.body|nl2br|t_url2cmd:'diary':$u|t_cmd:'diary'})</td></tr> 12 12 ({if $form_val.upfile_1.name}) 13 13 <tr><th>写真1</th><td>({$form_val.upfile_1.name})</td></tr> -
OpenPNE/trunk/webapp/modules/pc/templates/h_com_add_confirm.tpl
r6410 r7233 10 10 <tr><th>カテゴリ</th><td>({$c_commu_category_value})<br /></td></tr> 11 11 <tr><th>参加条件と<br />公開範囲</th><td>({$public_flag_value})<br /></td></tr> 12 <tr><th>({$WORD_COMMUNITY})説明文</th><td>({$form_val.info|nl2br|t_url2cmd:'community' |t_cmd:'community'})</td></tr>12 <tr><th>({$WORD_COMMUNITY})説明文</th><td>({$form_val.info|nl2br|t_url2cmd:'community':$u|t_cmd:'community'})</td></tr> 13 13 <tr><th>写真</th><td>({$form_val.image_filename})<br /></td></tr> 14 14 </table> -
OpenPNE/trunk/webapp/modules/pc/templates/h_config_prof_confirm.tpl
r6617 r7233 68 68 69 69 ({if $profile.form_type == 'textarea'}) 70 ({$prof.profile[$profile.name].value|nl2br|t_url2cmd:'profile' |t_cmd:'profile'})70 ({$prof.profile[$profile.name].value|nl2br|t_url2cmd:'profile':$u|t_cmd:'profile'}) 71 71 ({elseif $profile.form_type == 'checkbox'}) 72 72 ({$prof.profile[$profile.name].value|@t_implode:", "}) -
OpenPNE/trunk/webapp/modules/pc/templates/h_message.tpl
r6536 r7233 61 61 </ul> 62 62 ({/if}) 63 <p class="text">({$c_message.body|nl2br|t_url2cmd:'message' |t_cmd:'message'})</p>63 <p class="text">({$c_message.body|nl2br|t_url2cmd:'message':$c_message.c_member_id_from|t_cmd:'message'})</p> 64 64 </div> 65 65 -
OpenPNE/trunk/webapp/modules/pc/templates/h_regist_prof_confirm.tpl
r6617 r7233 63 63 64 64 ({if $profile.form_type == 'textarea'}) 65 ({$prof.profile[$profile.name].value|nl2br|t_url2cmd:'profile' |t_cmd:'profile'})65 ({$prof.profile[$profile.name].value|nl2br|t_url2cmd:'profile':$u|t_cmd:'profile'}) 66 66 ({elseif $profile.form_type == 'checkbox'}) 67 67 ({$prof.profile[$profile.name].value|@t_implode:", "}) -
OpenPNE/trunk/webapp/modules/pc/templates/inc_f_home_h_prof.tpl
r7154 r7233 274 274 <tr><th>({$item.caption})</th><td> 275 275 ({if $item.form_type == 'textarea'}) 276 ({$item.value|nl2br|t_url2cmd:'profile' |t_cmd:'profile'})276 ({$item.value|nl2br|t_url2cmd:'profile':$target_c_member_id|t_cmd:'profile'}) 277 277 ({elseif $item.form_type == 'checkbox'}) 278 278 ({$item.value|@t_implode:", "}) -
OpenPNE/trunk/webapp_biz/modules/pc/templates/inc_f_home_h_prof.tpl
r7154 r7233 260 260 <tr><th>({$item.caption})</th><td> 261 261 ({if $item.form_type == 'textarea'}) 262 ({$item.value|nl2br|t_url2cmd:'profile' |t_cmd:'profile'})262 ({$item.value|nl2br|t_url2cmd:'profile':$target_c_member_id|t_cmd:'profile'}) 263 263 ({elseif $item.form_type == 'checkbox'}) 264 264 ({$item.value|@t_implode:", "})
Note: See TracChangeset
for help on using the changeset viewer.