Changeset 10362
- Timestamp:
- 01/15/2009 12:08:20 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-footer.php
r10357 r10362 26 26 do_action('admin_footer', ''); 27 27 do_action('admin_print_footer_scripts'); 28 do_action("admin_footer-$hook_suffix"); 28 29 29 30 if ( false === get_option('can_compress_scripts') ) 30 31 compression_test(); 31 32 ?> 33 32 34 <script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script> 33 35 </body> 34 36 </html> 35 -
trunk/wp-admin/includes/template.php
r10357 r10362 3382 3382 $name = str_replace(array('.php', '-new', '-add'), '', $hook_suffix); 3383 3383 } 3384 unset($hook_suffix);3385 3384 ?> 3386 3385 <div id="icon-<?php echo $name; ?>" class="icon32"><br /></div> -
trunk/wp-includes/class.wp-scripts.php
r10358 r10362 161 161 foreach( $this->in_footer as $key => $handle ) { 162 162 if ( !in_array($handle, $this->done, true) && isset($this->registered[$handle]) ) { 163 $this->do_item($handle , false, $this->doecho);163 $this->do_item($handle); 164 164 $this->done[] = $handle; 165 165 unset( $this->in_footer[$key] );
Note: See TracChangeset
for help on using the changeset viewer.