Changeset 8466
- Timestamp:
- Sep 25, 2008, 4:20:14 PM (14 years ago)
- Location:
- OpenPNE/trunk/webapp/modules/ktai
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/trunk/webapp/modules/ktai/do/c_event_mail.php
r4933 r8466 24 24 //--- 権限チェック 25 25 26 // イベントの管理者でないと送信できない 27 if (!db_commu_is_c_event_admin($c_commu_topic_id, $u)) { 26 // イベント管理者・コミュニティ管理者(副管含む)のみ送信可能 27 if (!db_commu_is_c_event_admin($c_commu_topic_id, $u) 28 && !db_commu_is_c_commu_admin($c_commu_id, $u)) { 28 29 handle_kengen_error(); 29 30 } -
OpenPNE/trunk/webapp/modules/ktai/page/c_event_mail.php
r4933 r8466 23 23 handle_kengen_error(); 24 24 } 25 if (!db_commu_is_c_event_admin($c_commu_topic_id, $u)) { 25 if (!db_commu_is_c_event_admin($c_commu_topic_id, $u) 26 && !db_commu_is_c_commu_admin($c_commu_id, $u)) { 26 27 handle_kengen_error(); 27 28 } -
OpenPNE/trunk/webapp/modules/ktai/page/c_event_mail_confirm.php
r4933 r8466 32 32 } 33 33 34 if (!db_commu_is_c_event_admin($c_commu_topic_id, $u)) { 34 if (!db_commu_is_c_event_admin($c_commu_topic_id, $u) 35 && !db_commu_is_c_commu_admin($c_commu_id, $u)) { 35 36 handle_kengen_error(); 36 37 } -
OpenPNE/trunk/webapp/modules/ktai/page/c_event_mail_end.php
r4933 r8466 23 23 handle_kengen_error(); 24 24 } 25 if (!db_commu_is_c_event_admin($c_commu_topic_id, $u)) { 25 if (!db_commu_is_c_event_admin($c_commu_topic_id, $u) 26 && !db_commu_is_c_commu_admin($c_commu_id, $u)) { 26 27 handle_kengen_error(); 27 28 }
Note: See TracChangeset
for help on using the changeset viewer.