Changeset 11357 for trunk/wp-admin/admin-footer.php
- Timestamp:
- 05/16/2009 05:05:11 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-footer.php
r10976 r11357 28 28 do_action("admin_footer-$hook_suffix"); 29 29 30 if ( false === get_site_option('can_compress_scripts') ) 31 compression_test(); 30 // get_site_option() won't exist when auto upgrading from <= 2.7 31 if ( function_exists('get_site_option') ) { 32 if ( false === get_site_option('can_compress_scripts') ) 33 compression_test(); 34 } 35 32 36 ?> 33 37
Note: See TracChangeset
for help on using the changeset viewer.