FMCorz / moodle-block_xp

A gamification plugin for Moodle allowing students to gain experience points and level up.
https://levelup.plus/?ref=github
150 stars 41 forks source link

Wrong column name in classes/output/log_table.php #104

Closed wiktorwandachowicz closed 4 years ago

wiktorwandachowicz commented 4 years ago

Cannot sort by Reward column in 'Log' view.

There is in function __construct() of log_table.php:

        // Define columns.
        $this->define_columns(array(
            'time',
            'fullname',
            'reward',
            'eventname'
        ))

But there is a typo: instead of 'reward' it should be 'xp' (just like in column definition in the DB). Otherwise users get DBML exceptions while sorting the table over Reward column.

FMCorz commented 4 years ago

Thanks for the report!