Getting notice in function feedback_user_outline()

Getting notice in function feedback_user_outline()

by Tatsuya Shirai -
Number of replies: 1

function feedback_user_outline($course, $user, $mod, $feedback) {

    return $return;
}

This function send $return back when user requests activity report, however $return is not defined.

---

function feedback_user_outline($course, $user, $mod, $feedback) {

    $return = NULL;
    return $return;
}

Average of ratings: -
In reply to Tatsuya Shirai

Re: Getting notice in function feedback_user_outline()

by Andreas Grabs -
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers Picture of Translators
Hi Tatsuya,

thank you very much for this hint. I fixed it on cvs.

Andreas