mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
MDL-51395 blog: Fix output of strings for blog comments
This commit is contained in:
parent
4cef723c22
commit
cefa583e71
@ -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');
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user