Changeset 61440 for trunk/src/wp-includes/class-wp-editor.php
- Timestamp:
- 01/05/2026 04:02:03 PM (3 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-editor.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-editor.php
r60182 r61440 979 979 980 980 ?> 981 <script type="text/javascript">981 <script> 982 982 window.wp = window.wp || {}; 983 983 window.wp.editor = window.wp.editor || {}; … … 1564 1564 wp_print_scripts( array( 'wp-tinymce' ) ); 1565 1565 1566 echo "<script type='text/javascript'>\n" . self::wp_mce_translation() . "</script>\n";1566 echo "<script>\n" . self::wp_mce_translation() . "</script>\n"; 1567 1567 } 1568 1568 … … 1621 1621 ?> 1622 1622 1623 <script type="text/javascript">1623 <script> 1624 1624 tinyMCEPreInit = { 1625 1625 baseURL: "<?php echo $baseurl; ?>", … … 1645 1645 if ( self::$ext_plugins ) { 1646 1646 // Load the old-format English strings to prevent unsightly labels in old style popups. 1647 echo "<script type='text/javascript'src='{$baseurl}/langs/wp-langs-en.js?$version'></script>\n";1647 echo "<script src='{$baseurl}/langs/wp-langs-en.js?$version'></script>\n"; 1648 1648 } 1649 1649 } … … 1660 1660 1661 1661 ?> 1662 <script type="text/javascript">1662 <script> 1663 1663 <?php 1664 1664
Note: See TracChangeset
for help on using the changeset viewer.