Skip to content

Commit a8f71ff

Browse files
author
Bugfish
committed
4.11
1 parent ecb803e commit a8f71ff

File tree

6 files changed

+6
-4
lines changed

6 files changed

+6
-4
lines changed

_changelogs/4.11.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<b>Release 4.11</b><br /> - Bugfish Framework 4.11 update on dolibarr module
484 KB
Binary file not shown.

docs/extra-framework/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1890,7 +1890,7 @@ <h3 id="php-functions">PHP: Functions</h3>
18901890
<td>LGPL-2.1</td>
18911891
</tr>
18921892
<tr>
1893-
<td><a href="./_functions/x_cookiebanner.html">x_cookiebanner.php</a></td>
1893+
<td><a href="./functions/x_cookiebanner.html">x_cookiebanner.php</a></td>
18941894
<td>PHP code to display and manage cookie consent banners.</td>
18951895
<td>LGPL-2.1</td>
18961896
</tr>

xframework/core/modules/modxframework.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function __construct($db) {
6060
$this->editor_name = 'Bugfish Industries';
6161
$this->editor_url = 'https://www.bugfish.eu';
6262
// Possible values for version are: 'development', 'experimental', 'dolibarr', 'dolibarr_deprecated' or a version string like 'x.y.z'
63-
$this->version = '4.10';
63+
$this->version = '4.11';
6464
// Url to the file with your last numberversion of this module
6565
// $this->url_last_version = 'http://www.example.com/versionmodule.txt';
6666
// Key used in llx_const table to save module status enabled/disabled (where xframework is value of property name of module in uppercase)

xframework/remote/classes/x_class_user.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ private function ext_createtable() {
173173
`fk_user` int(10) NOT NULL COMMENT 'User Relation',
174174
`creation` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation Date',
175175
`modification` datetime NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Modification Date',
176-
PRIMARY KEY (`id`), CONSTRAINT ".$this->table_ext."_unique UNIQUE (`fk_user`,`fk_group`));"); }}
176+
PRIMARY KEY (`id`), CONSTRAINT ".$this->table_ext."_unique UNIQUE (`fk_user`));"); }}
177177
public function extrafield_add_field($string) { $x = $this->mysql->log_status(); $this->mysql->log_disable(); $y = $this->mysql->query("ALTER TABLE `".$this->table_ext."` ADD COLUMN ".$string." ;"); if($x) {$this->mysql->log_enable();}return $y; }
178178
public function extrafield_del_field($fieldname) { $x = $this->mysql->log_status(); $this->mysql->log_disable(); $y = $this->mysql->query("ALTER TABLE `".$this->table_ext."` DROP COLUMN ".$fieldname." ;"); if($x) {$this->mysql->log_enable();} return $y; }
179179
public function extrafield_get($id) {
@@ -470,6 +470,7 @@ private function create_table($initial = false, $initialpass = "changeme", $init
470470
`user_2fa` text DEFAULT NULL COMMENT 'Users 2FA key',
471471
`user_initial` int(1) DEFAULT 0 COMMENT '1 if this user is initial created user',
472472
`user_rank` int(9) NULL DEFAULT NULL COMMENT 'Users Rank',
473+
`user_status` int(9) NULL DEFAULT NULL COMMENT 'User Status',
473474
`user_confirmed` tinyint(1) DEFAULT '0' COMMENT 'User Activation Status',
474475
`user_disabled` int(1) DEFAULT 0 COMMENT '1 - User is Disabled',
475476
`user_blocked` tinyint(1) DEFAULT '0' COMMENT 'User Blocked/Disabled Status',

xframework/remote/classes/x_class_version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function __construct() {
4040
$this->website = "https://www.bugfish.eu";
4141
$this->github = "https://github.com/bugfishtm/bugfish-framework";
4242
$this->documentation = "https://bugfishtm.github.io/Bugfish-framework";
43-
$this->version = "4.10";
43+
$this->version = "4.11";
4444
}
4545

4646
// Optional: Prevent modifications after instantiation (using a private setter)

0 commit comments

Comments
 (0)