wp/wp-admin/admin-footer.php
changeset 18 be944660c56a
parent 16 a86126ab1dd4
child 22 8c2e4d02f4ef
equal deleted inserted replaced
17:34716fd837a4 18:be944660c56a
   103  * @since 2.8.0
   103  * @since 2.8.0
   104  */
   104  */
   105 do_action( "admin_footer-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
   105 do_action( "admin_footer-{$hook_suffix}" ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
   106 
   106 
   107 // get_site_option() won't exist when auto upgrading from <= 2.7.
   107 // get_site_option() won't exist when auto upgrading from <= 2.7.
   108 if ( function_exists( 'get_site_option' ) ) {
   108 if ( function_exists( 'get_site_option' )
   109 	if ( false === get_site_option( 'can_compress_scripts' ) ) {
   109 	&& false === get_site_option( 'can_compress_scripts' )
   110 		compression_test();
   110 ) {
   111 	}
   111 	compression_test();
   112 }
   112 }
   113 
   113 
   114 ?>
   114 ?>
   115 
   115 
   116 <div class="clear"></div></div><!-- wpwrap -->
   116 <div class="clear"></div></div><!-- wpwrap -->
   117 <script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
   117 <script type="text/javascript">if(typeof wpOnload==='function')wpOnload();</script>
   118 </body>
   118 </body>
   119 </html>
   119 </html>