Require edit comments

Permalink 1 user found helpful
Is there a way to require an editor to enter a Version Comment before saving changes? Preferably I'd like if there was a pop-up of some kind or added text (like when you try to submit a form without everything filled out) that tells the editor to enter text in the comment box. I can't find a setting or addon to do this.

 
MrKDilkington replied on at Permalink Best Answer Reply
MrKDilkington
Hi MRPockets,

There is a config setting for this:
<?php
return array(
    'misc' => array(
        'require_version_comments' => true
    )
);

In your application\config folder, open concrete.php. If you don't have a concrete.php file, you will need to create one. The concrete.php file will only contain PHP, so only an opening PHP tag is required. Paste the following code into concrete.php.
MRPockets replied on at Permalink Reply
Thank you, this is perfect!