- Posts: 6
How To / General
XML-RPC Error (28260048)
- chye
- Topic Author
- Offline
- New Member
-
Less
More
6 years 6 months ago #1
by chye
XML-RPC Error (28260048) was created by chye
Hi, we updated to the latest Joomdle and encountered the error when viewing My Grades:
Code:
XML-RPC Error (28260048): Invalid response value detected | DEBUG INFO: grades => Invalid response value detected: data => Invalid response value detected: items => Invalid response value detected: Error in response - Missing following required key in a single structure: course_module_id | ERRORCODE: invalidresponse
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7906
6 years 6 months ago #2
by Antonio Durán
Replied by Antonio Durán on topic XML-RPC Error (28260048)
Hi.
Thanks for the bug report. Please test this change to see if it solves the issue.
File: moodle/auth/joomdle/auth.php
Function: get_grade_user_report
Change:
by:
Thanks for the bug report. Please test this change to see if it solves the issue.
File: moodle/auth/joomdle/auth.php
Function: get_grade_user_report
Change:
Code:
else
$category_item['due'] = 0;
Code:
else
{
$category_item['course_module_id'] = 0;
$category_item['due'] = 0;
}
Please Log in or Create an account to join the conversation.
- Web Buster UK Ltd
-
- Offline
- Elite Member
-
6 years 6 months ago #3
by Web Buster UK Ltd
Replied by Web Buster UK Ltd on topic XML-RPC Error (28260048)
Thanks Antonio, it's working perfectly now.
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7906
6 years 6 months ago #4
by Antonio Durán
Replied by Antonio Durán on topic XML-RPC Error (28260048)
Great, thanks for the feedback.
Please Log in or Create an account to join the conversation.