Skip to content

Commit

Permalink
Support FluxBB 1.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
MioVisman committed Feb 7, 2022
1 parent d289eda commit def5f88
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/Models/Transformer/Driver/FluxBB/FluxBB.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class FluxBB extends AbstractDriver
/**
* @var string
*/
protected $min = '1.5.8';
protected $min = '1.5.7';

/**
* @var string
Expand Down Expand Up @@ -192,7 +192,7 @@ public function groupsGet(int &$id): ?array
'g_mod_rename_users' => (int) $vars['g_mod_rename_users'],
'g_mod_change_passwords' => (int) $vars['g_mod_change_passwords'],
'g_mod_ban_users' => (int) $vars['g_mod_ban_users'],
'g_mod_promote_users' => (int) $vars['g_mod_promote_users'],
'g_mod_promote_users' => (int) ($vars['g_mod_promote_users'] ?? 0),
'g_read_board' => (int) $vars['g_read_board'],
'g_view_users' => (int) $vars['g_view_users'],
'g_post_replies' => (int) $vars['g_post_replies'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public function groupsGet(int &$id): ?array
'g_mod_rename_users' => (int) $vars['g_mod_rename_users'],
'g_mod_change_passwords' => (int) $vars['g_mod_change_passwords'],
'g_mod_ban_users' => (int) $vars['g_mod_ban_users'],
'g_mod_promote_users' => (int) $vars['g_mod_promote_users'],
'g_mod_promote_users' => (int) ($vars['g_mod_promote_users'] ?? 0),
'g_read_board' => (int) $vars['g_read_board'],
'g_view_users' => (int) $vars['g_view_users'],
'g_post_replies' => (int) $vars['g_post_replies'],
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Transformer is a script to convert/merge another forum's database to/with ForkBB
Supports (convert/merge):
1. ForkBB rev.42 - rev.48
2. FluxBB_by_Visman rev.78 - rev.83
3. FluxBB 1.5.8 - 1.5.11
3. FluxBB 1.5.7 - 1.5.11

## Requirements

Expand Down

0 comments on commit def5f88

Please sign in to comment.