Changeset 49405 for branches/4.1/src/wp-admin/includes/template.php
- Timestamp:
- 10/29/2020 07:09:27 PM (4 years ago)
- Location:
- branches/4.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.1
- Property svn:mergeinfo changed
/branches/5.5 (added) merged: 49373-49379,49381 /trunk merged: 49380,49382-49388
- Property svn:mergeinfo changed
-
branches/4.1/src/wp-admin/includes/template.php
r41446 r49405 1548 1548 addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}}; 1549 1549 function tb_close(){var win=window.dialogArguments||opener||parent||top;win.tb_remove();} 1550 var ajaxurl = '<?php echo admin_url( 'admin-ajax.php', 'relative'); ?>',1551 pagenow = '<?php echo $current_screen->id; ?>',1552 typenow = '<?php echo $current_screen->post_type; ?>',1553 adminpage = '<?php echo $admin_body_class; ?>',1554 thousandsSeparator = '<?php echo addslashes( $wp_locale->number_format['thousands_sep'] ); ?>',1555 decimalPoint = '<?php echo addslashes( $wp_locale->number_format['decimal_point'] ); ?>',1550 var ajaxurl = '<?php echo esc_js( admin_url( 'admin-ajax.php', 'relative' ) ); ?>', 1551 pagenow = '<?php echo esc_js( $current_screen->id ); ?>', 1552 typenow = '<?php echo esc_js( $current_screen->post_type ); ?>', 1553 adminpage = '<?php echo esc_js( $admin_body_class ); ?>', 1554 thousandsSeparator = '<?php echo esc_js( $wp_locale->number_format['thousands_sep'] ); ?>', 1555 decimalPoint = '<?php echo esc_js( $wp_locale->number_format['decimal_point'] ); ?>', 1556 1556 isRtl = <?php echo (int) is_rtl(); ?>; 1557 1557 //]]>
Note: See TracChangeset
for help on using the changeset viewer.