|
Cookbook /
RequireSummarySummary: Require a summary to be entered
Version: 2006-07-19
Prerequisites:
Status:
Maintainer:
Categories:Administration
Questions answered by this recipe
DescriptionIn config.php:
## Require summary
function RequireSummary($pagename, &$page, &$new) {
global $ChangeSummary, $MessagesFmt, $EnablePost;
if ($EnablePost && !$ChangeSummary) {
$MessagesFmt[] = "A summary is required.";
$EnablePost = 0;
}
}
array_unshift($EditFunctions, 'RequireSummary');
NotesRelease Notes
2006-07-19: Initial release based on Pm's post: http://article.gmane.org/gmane.comp.web.wiki.pmwiki.user/29433/ CommentsSee AlsoContributors
|