cache_profilesetting.php 421 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * [Discuz!] (C)2001-2099 Comsenz Inc.
  4. * This is NOT a freeware, use is subject to license terms
  5. *
  6. * $Id: cache_profilesetting.php 24935 2011-10-17 07:41:48Z zhangguosheng $
  7. */
  8. if(!defined('IN_DISCUZ')) {
  9. exit('Access Denied');
  10. }
  11. function build_cache_profilesetting() {
  12. $data = C::t('common_member_profile_setting')->fetch_all_by_available(1);
  13. savecache('profilesetting', $data);
  14. }
  15. ?>