Bugs solutions
File revision-control.php
# bug_1
__('Post Revisions', 'revision-control') missing not allowing to be shown translated.
Current
line 83. add_meta_box('revisionsdiv', __('Post Revisions'), array('Plugin_Revision_Control_UI', 'revisions_meta_box'), $type, 'normal');
fix
line 83. add_meta_box('revisionsdiv', __('Post Revisions', 'revision-control'), array('Plugin_Revision_Control_UI', 'revisions_meta_box'), $type, 'normal');
# bug_2
It will hide checkbox in current revision and autosave, not allowing to be selected by check all function
current
line 616. <input type='checkbox' name='checked[]' class='checklist toggle-type' value='$revision->ID' $deletedisabled />
line 617. </span>
fix
line 616. "; if (empty($deletedisabled)) echo "<input type='checkbox' name='checked[]' class='checklist toggle-type' value='$revision->ID' $deletedisabled />";
line 617. echo " </span>
File revision-control.js
# bug_3
When clicking delete without any revision selected it was outputing the following message:
The AJAX request has Failed, Please try again;
The unexpected data was: ...
current
line 31. if ( -1 == success ) {
fix
line 31. if ( -1 == success && r.responses[0].supplemental.revisions != undefined) {