Update line:365 .../includes/forms-projects.php
Line 365 of /includes/forms-projects.php includes the following:
Code:
require ABSPATH . '/wp-admin/includes/post.php';
which could be changed to:
Code:
require_once( ABSPATH . '/wp-admin/includes/post.php');
includes/post.php is a commonly included file by many plugins and using require_once can help to prevent previously declared errors/clashes from occurring with other plugins.
Regards...John.