Changeset 4107
- Timestamp:
- 08/22/2006 05:57:28 AM (18 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/js/autosave.js.php
r4103 r4107 51 51 nonceAjax.setVar("cookie", document.cookie); 52 52 nonceAjax.setVar("post_type", $('post_type').value); 53 nonceAjax.requestFile = "<?php echo get_ bloginfo('siteurl'); ?>/wp-admin/admin-ajax.php";53 nonceAjax.requestFile = "<?php echo get_option('siteurl'); ?>/wp-admin/admin-ajax.php"; 54 54 nonceAjax.onCompletion = autosave_update_nonce; 55 55 nonceAjax.method = "POST"; … … 120 120 } 121 121 122 autosaveAjax.requestFile = "<?php echo get_ bloginfo('siteurl'); ?>/wp-admin/admin-ajax.php";122 autosaveAjax.requestFile = "<?php echo get_option('siteurl'); ?>/wp-admin/admin-ajax.php"; 123 123 autosaveAjax.method = "POST"; 124 124 autosaveAjax.element = null; -
trunk/wp-includes/script-loader.php
r4105 r4107 19 19 $this->add( 'wp_tiny_mce', '/wp-includes/js/tinymce/tiny_mce_config.php', array('tiny_mce'), '04162006' ); 20 20 $this->add( 'prototype', '/wp-includes/js/prototype.js', false, '1.5.0'); 21 $this->add( 'autosave', '/wp-includes/js/autosave.js.php', array('prototype', 'sack'), '410 2');21 $this->add( 'autosave', '/wp-includes/js/autosave.js.php', array('prototype', 'sack'), '4107'); 22 22 if ( is_admin() ) { 23 23 $this->add( 'dbx-admin-key', '/wp-admin/dbx-admin-key-js.php', array('dbx'), '3651' );
Note: See TracChangeset
for help on using the changeset viewer.