Ok, because disabling the autosave caused problems for me i tried some more and notice i had to deactivate the ‘post’ script also to avoid getting a javascript error while going from title field to editor.(i have no idea what this script does, but i didnt notice anything wrong after deactivating it…) And cause i didnt like the wordcount anyway i disabled that to:P
I Got everything working right now by activating this plugin:
<?php
/*
Plugin Name: Your attempt Fix
Version: 1.0
Plugin URI: https://www.www.ads-software.com
Description: Fixes the very anoying "Your attempt to edit this post" bug in WP7 admin
Author: Bas
Author URI:
*/
function wp_27_adminpost_fix() {
wp_deregister_script('autosave');
wp_deregister_script('post');
wp_deregister_script('word-count');
}
add_action( 'wp_print_scripts', 'wp_27_adminpost_fix' );
?>