I just entered the first results after updating the extension.
I get an SQL error when sending the results, and I see that there is no longer the box to use Ultimate Point.
Can you help me ?


rank
column which is a reserved word in AFAIK MariaDB, please download the attached file, unzip and then upload it to your servers /ext/mot/swb/includes
directory and let it overwrite the existing file.Code: Select all
{% if S_CASH_POINTS %}{{ lang('ACP_MOT_SWB_FIXTURES_CASH_POINTS') }} <input name="cash" type="checkbox" class="radio" {% if S_CASH %}"checked"{% endif %}> {% endif %}
/ext
directory, give permission to overwrite the existing files when asked and then select all matches of the last round in the "Enter result" tab of the ACP and click the "Submit" button (after selecting the checkbox for UP) and you should be okay.Code: Select all
/* if ($this->ext_manager->is_enabled('dmzx/ultimatepoints') && $this->config['mot_swb_ult_points'])
{
// Get an instance of the ultimatepoints functions_points
$this->functions_points = $phpbb_container->get('dmzx.ultimatepoints.core.functions.points');
}*/
$this->functions_points = ($this->ext_manager->is_enabled('dmzx/ultimatepoints') && $this->config['mot_swb_ult_points']) ?
$phpbb_container->get('dmzx.ultimatepoints.core.functions.points') :
$mot_swb_functions_points;