diff --git a/blog/edit.php b/blog/edit.php index d82b24479bb..7ff8333e0ec 100644 --- a/blog/edit.php +++ b/blog/edit.php @@ -26,6 +26,7 @@ require_once(dirname(dirname(__FILE__)).'/config.php'); require_once('lib.php'); require_once('locallib.php'); +require_once($CFG->dirroot .'/comment/lib.php'); $action = required_param('action', PARAM_ALPHA); $id = optional_param('entryid', 0, PARAM_INT); @@ -115,6 +116,9 @@ $output = $PAGE->get_renderer('blog'); $strblogs = get_string('blogs', 'blog'); if ($action === 'delete') { + // Init comment JS strings. + comment::init(); + if (empty($entry->id)) { print_error('wrongentryid', 'blog'); }