Changeset 9078
- Timestamp:
- Nov 11, 2008, 7:51:31 PM (12 years ago)
- Location:
- OpenPNE/trunk/webapp
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/trunk/webapp/lib/util/ktai.php
r9072 r9078 63 63 48 => "設定を変更しました", 64 64 49 => "そのカテゴリに新規に" . WORD_COMMUNITY . "を作ることはできません", 65 50 => "その" . WORD_COMMUNITY . "はすでに存在します", 65 66 ); 66 67 -
OpenPNE/trunk/webapp/modules/ktai/do/c_edit_update_c_commu.php
r9074 r9078 24 24 $public_flag = $requests['public_flag']; 25 25 $topic_authority = $requests['topic_authority']; 26 27 if (db_commu_is_commu4c_commu_name($name)) { 28 $p = array('msg' => 50); 29 openpne_redirect('ktai', 'page_h_com_add', $p); 30 } 26 31 27 32 if (!db_commu_c_commu_category_is_create_flag($c_commu_category_id)) { -
OpenPNE/trunk/webapp/modules/ktai/do/h_com_add_insert_c_commu.php
r9072 r9078 23 23 $public_flag = $requests['public_flag']; 24 24 25 if (db_commu_is_commu4c_commu_name($name)) { 26 $p = array('msg' => 50); 27 openpne_redirect('ktai', 'page_h_com_add', $p); 28 } 29 25 30 if (!db_commu_c_commu_category_is_create_flag($c_commu_category_id)) { 26 31 $p = array('msg' => 49); -
OpenPNE/trunk/webapp/modules/pc/do/c_edit_update_c_commu.php
r9074 r9078 38 38 if (!$name) $err_msg[] = WORD_COMMUNITY . "名を入力してください"; 39 39 if (!$info) $err_msg[] = WORD_COMMUNITY . "の説明を入力してください"; 40 41 if (db_commu_is_commu4c_commu_name($name)) { 42 $err_msg[] = 'その' . WORD_COMMUNITY . 'はすでに存在します'; 43 } 40 44 41 45 if (!db_commu_c_commu_category_is_create_flag($c_commu_category_id)) {
Note: See TracChangeset
for help on using the changeset viewer.