File tree 3 files changed +24
-3
lines changed
3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class AuthInfo extends BaseConfig {
21
21
*
22
22
* @var string
23
23
*/
24
- public $ version = '3.5.0 ' ;
24
+ public $ version = '3.5.1 ' ;
25
25
26
26
/**
27
27
* --------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -326,13 +326,13 @@ public function usersEditDo($id = null) {
326
326
//
327
327
// Get the Active switch.
328
328
//
329
- if ($ this ->request ->getPost ('swi_active ' )) $ user ->setAttribute ('active ' , 1 );
329
+ if ($ this ->request ->getPost ('active ' )) $ user ->setAttribute ('active ' , 1 );
330
330
else $ user ->setAttribute ('active ' , 0 );
331
331
332
332
//
333
333
// Get the Banned switch.
334
334
//
335
- if ($ this ->request ->getPost ('swi_banned ' )) $ user ->setAttribute ('status ' , 'banned ' );
335
+ if ($ this ->request ->getPost ('banned ' )) $ user ->setAttribute ('status ' , 'banned ' );
336
336
else $ user ->setAttribute ('status ' , null );
337
337
338
338
//
Original file line number Diff line number Diff line change 1
1
<!-- Release Info -->
2
+ <div class="card mb-3">
3
+ <div class="card-header"><i class="bi-box me-3"></i>Release 3.5.1<span class="float-end">2024-03-18</span></div>
4
+ <div class="card-body">
5
+ <h6>Bugfix</h6>
6
+ <ul>
7
+ <li>Missing translation in Spanish language (thanks to @treborin))</li>
8
+ <li>Fixed Active/Banned switch in User Edit page</li>
9
+ </ul>
10
+ </div>
11
+ </div>
12
+ <div class="card mb-3">
13
+ <div class="card-header"><i class="bi-box me-3"></i>Release 3.5.0<span class="float-end">2024-03-18</span></div>
14
+ <div class="card-body">
15
+ <h6>Improvement</h6>
16
+ <ul>
17
+ <li>UI adjustments</li>
18
+ <li>Extended BS5 helper</li>
19
+ <li>Changed config variable name in Controllers to be more unique</li>
20
+ </ul>
21
+ </div>
22
+ </div>
2
23
<div class="card mb-3">
3
24
<div class="card-header"><i class="bi-box me-3"></i>Release 3.4.0<span class="float-end">2024-02-23</span></div>
4
25
<div class="card-body">
You can’t perform that action at this time.
0 commit comments