Changeset 940
- Timestamp:
- Nov 29, 2006, 2:13:17 AM (15 years ago)
- Location:
- OpenPNE/branches/prj_tuning/webapp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/prj_tuning/webapp/lib/db/member.php
r728 r940 21 21 $is_recurred = true; 22 22 $funcargs = func_get_args(); 23 return pne_cache_recursive_call(OPENPNE_FUNCTION_CACHE_LIFETIME_ LONG, __FUNCTION__, $funcargs);23 return pne_cache_recursive_call(OPENPNE_FUNCTION_CACHE_LIFETIME_FAST, __FUNCTION__, $funcargs); 24 24 } 25 25 … … 979 979 $is_shinobiashi) 980 980 { 981 //function cacheの削除 982 cache_drop_c_member_profile($c_member_id); 983 981 984 $data = array( 982 985 'is_receive_mail' => (bool)$is_receive_mail, -
OpenPNE/branches/prj_tuning/webapp/modules/admin/lib/db_admin.php
r753 r940 75 75 function db_admin_delete_c_profile_option($c_profile_option_id) 76 76 { 77 //function cache削除 78 pne_cache_drop('db_member_c_profile_list'); 79 77 80 if (!$c_profile_option_id) return false; 78 81 … … 89 92 function db_admin_insert_c_profile_option($c_profile_id, $value, $sort_order) 90 93 { 94 //function cache削除 95 pne_cache_drop('db_member_c_profile_list'); 96 91 97 $data = array( 92 98 'c_profile_id' => intval($c_profile_id), … … 99 105 function db_admin_update_c_profile_option($c_profile_option_id, $value, $sort_order) 100 106 { 107 //function cache削除 108 pne_cache_drop('db_member_c_profile_list'); 109 101 110 $data = array('value' => $value); 102 111 $where = array('c_profile_option_id' => intval($c_profile_option_id));
Note: See TracChangeset
for help on using the changeset viewer.