ellatrix / wp-front-end-editor

Front-end Editor for WordPress
https://wordpress.org/plugins/wp-front-end-editor/
341 stars 87 forks source link

Undefined index: modified in /wp-content/plugins/wp-front-end-editor/class-fee.php on line 241 #301

Closed limestreet closed 7 years ago

limestreet commented 7 years ago

There is PHP Notice - probably when there was no previous autosave: Undefined index: modified in /wp-content/plugins/wp-front-end-editor/class-fee.php on line 241

On line 241 there is: 'autosave' => strtotime($rest_autosave['modified']) > strtotime($rest_post['modified']) ? $rest_autosave : null,

to solve this issue I think it should be:

'autosave' => isset($rest_autosave['modified']) && strtotime($rest_autosave['modified']) > strtotime($rest_post['modified']) ? $rest_autosave : null,

ellatrix commented 7 years ago

Thanks for the report!

ellatrix commented 7 years ago

Fixed in ef751578adbc5b3366b7a950fe71621b8fe946ab

ellatrix commented 7 years ago

2.2.1 is available to fix the issue https://wordpress.org/plugins/wp-front-end-editor/

limestreet commented 7 years ago

Thanks! Really nice project - hope it'll land in core :)