Changeset 7331
- Timestamp:
- May 22, 2008, 9:57:13 PM (14 years ago)
- Location:
- OpenPNE/branches/stable-2.12.x
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/stable-2.12.x/webapp/modules/pc/do/h_member_config_update_display_home.php
r7323 r7331 20 20 $default_config = util_get_c_member_config_default(); 21 21 foreach ($requests as $key => $value) { 22 if ( array_key_exists($key, $default_config)) {22 if (!is_null($value) && array_key_exists($key, $default_config)) { 23 23 db_member_update_c_member_config($u, $key, $value); 24 24 } -
OpenPNE/branches/stable-2.12.x/webapp/modules/pc/validate/do/h_member_config_update_display_home.ini
r7326 r7331 1 1 [IS_DISPLAY_NEWDIARY_HOME] 2 2 type = "bool" 3 default = "0"4 3 5 4 [IS_DISPLAY_NEWTOPIC_HOME] 6 5 type = "bool" 7 default = "0"8 6 9 7 [IS_DISPLAY_BOOKMARK_DIARY_HOME] 10 8 type = "bool" 11 default = "0"12 9 13 10 [IS_DISPLAY_BOOKMARK_BLOG_HOME] 14 11 type = "bool" 15 default = "0"16 12 17 13 [IS_DISPLAY_SCHEDULE_HOME] 18 14 type = "bool" 19 default = "0" -
OpenPNE/branches/stable-2.12.x/webapp_biz/modules/pc/validate/do/h_member_config_update_display_home.ini
r7326 r7331 1 1 [IS_DISPLAY_NEWDIARY_HOME] 2 2 type = "bool" 3 default = "0"4 3 5 4 [IS_DISPLAY_NEWTOPIC_HOME] 6 5 type = "bool" 7 default = "0"8 6 9 7 [IS_DISPLAY_BOOKMARK_DIARY_HOME] 10 8 type = "bool" 11 default = "0"12 9 13 10 [IS_DISPLAY_BOOKMARK_BLOG_HOME] 14 11 type = "bool" 15 default = "0"
Note: See TracChangeset
for help on using the changeset viewer.