Forum Replies Created

Viewing 91 replies (of 91 total)
  • Thread Starter remymedranda

    (@remymedranda)

    Got someone to take a look at this, and they fixed it for me..

    This is what they did to fix it..

    On line 436 where they call their custom comparison function via usort they called it incorrectly. Since the call is part of their class and is a member function of the class instead of it being called like this:

    usort($recordings, ‘BigBlueButton::recordingBuildSorter’);

    it should be called like this:

    usort($recordings, array(__CLASS__, ‘BigBlueButton::recordingBuildSorter’));

Viewing 91 replies (of 91 total)