Changeset 30424 for extensions/see_photos_by_user/maintain.class.php
- Timestamp:
- Nov 11, 2014, 11:03:22 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/see_photos_by_user/maintain.class.php
r30423 r30424 25 25 global $conf; 26 26 if (!isset($conf['see_photos_by_user_nbphotos'])) { 27 conf_update_param('see_photos_by_user_nbphotos', '0' );27 conf_update_param('see_photos_by_user_nbphotos', '0',true); 28 28 } 29 29 if (!isset($conf['see_photos_by_user_limit'])) { 30 conf_update_param('see_photos_by_user_limit', '1000' );30 conf_update_param('see_photos_by_user_limit', '1000',true); 31 31 } 32 32 if (!isset($conf['see_photos_by_user_order'])) { … … 34 34 } 35 35 if (!isset($conf['see_photos_by_user_show'])||$conf['see_photos_by_user_show']>2) { 36 conf_update_param('see_photos_by_user_show', '1' );36 conf_update_param('see_photos_by_user_show', '1',true); 37 37 } 38 38 if (!isset($conf['see_photos_by_user_show_user_home'])) { 39 conf_update_param('see_photos_by_user_show_user_home', '1' );39 conf_update_param('see_photos_by_user_show_user_home', '1',true); 40 40 } 41 41 if (!isset($conf['see_photos_by_user_color'])) { 42 conf_update_param('see_photos_by_user_color', '#ffffff' );42 conf_update_param('see_photos_by_user_color', '#ffffff',true); 43 43 } 44 44 }
Note: See TracChangeset
for help on using the changeset viewer.