mirror of
https://github.com/moodle/moodle.git
synced 2025-04-04 16:04:00 +02:00
Merge branch 'MDL-47916-master' of git://github.com/jleyva/moodle
This commit is contained in:
commit
72dbe74e7e
@ -472,9 +472,13 @@ class mod_forum_external extends external_api {
|
||||
}
|
||||
|
||||
// Function forum_get_all_discussion_posts adds postread field.
|
||||
if (!isset($post->postread)) {
|
||||
// Note that the value returned can be a boolean or an integer. The WS expects a boolean.
|
||||
if (empty($post->postread)) {
|
||||
$posts[$pid]->postread = false;
|
||||
} else {
|
||||
$posts[$pid]->postread = true;
|
||||
}
|
||||
|
||||
$posts[$pid]->canreply = $canreply;
|
||||
if (!empty($posts[$pid]->children)) {
|
||||
$posts[$pid]->children = array_keys($posts[$pid]->children);
|
||||
|
Loading…
x
Reference in New Issue
Block a user