Changeset 4267
- Timestamp:
- Oct 2, 2007, 10:01:36 PM (12 years ago)
- Location:
- OpenPNE/trunk/webapp/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/trunk/webapp/lib/db/member.php
r4240 r4267 1237 1237 cache_drop_c_member_profile($c_member_id); 1238 1238 1239 if (util_is_regist_mail_address($pc_address)) { 1240 return false; 1241 } 1242 1239 1243 $data = array('pc_address' => t_encrypt($pc_address)); 1240 1244 $where = array('c_member_id' => intval($c_member_id)); … … 1246 1250 // function cacheを削除 1247 1251 cache_drop_c_member_profile($c_member_id); 1252 1253 if (util_is_regist_mail_address($pc_address)) { 1254 return false; 1255 } 1248 1256 1249 1257 $data = array( … … 1267 1275 'easy_access_id' => '', 1268 1276 ); 1277 } elseif (util_is_regist_mail_address($ktai_address)) { 1278 $data = array('ktai_address' => t_encrypt($ktai_address)); 1269 1279 } else { 1270 $data = array('ktai_address' => t_encrypt($ktai_address));1280 return false; 1271 1281 } 1272 1282 $where = array('c_member_id' => intval($c_member_id)); -
OpenPNE/trunk/webapp/lib/util/util.php
r3942 r4267 544 544 return false; 545 545 } 546 546 547 if (!db_member_is_limit_domain4mail_address($mail_address)) { 548 return false; 549 } 550 547 551 if (db_member_is_sns_join4mail_address($mail_address, $c_member_id)) { 548 552 return false; 549 553 } 550 551 if (!db_member_is_limit_domain4mail_address($mail_address)) { 552 return false; 553 } 554 554 555 555 return true; 556 556 }
Note: See TracChangeset
for help on using the changeset viewer.