Skip to content

Commit 700fe25

Browse files
committed
Release phpwcms v1.9.40, the legacy release
Fixes issue #361, innodb_default_row_format needs to be with SET GLOBAL
1 parent d138cde commit 700fe25

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

include/inc_lib/revision/revision.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
*
1010
**/
1111

12-
const PHPWCMS_VERSION = '1.9.39';
13-
const PHPWCMS_RELEASE_DATE = '2024/07/28';
12+
const PHPWCMS_VERSION = '1.9.40';
13+
const PHPWCMS_RELEASE_DATE = '2024/08/06';
1414
const PHPWCMS_REVISION = '553';

setup/inc/setup.check.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159
//mysqli_query($db, 'SET storage_engine=MYISAM');
160160
mysqli_query($db, 'SET SQL_MODE=NO_ENGINE_SUBSTITUTION');
161-
mysqli_query($db, 'SET innodb_default_row_format=DYNAMIC');
161+
mysqli_query($db, 'SET GLOBAL innodb_default_row_format=DYNAMIC');
162162

163163
$value = "SET NAMES '". mysqli_real_escape_string($db, $phpwcms['db_charset'])."'";
164164
$value .= empty($phpwcms['db_collation']) ? '' : " COLLATE '".mysqli_real_escape_string($db, $phpwcms['db_collation'])."'";

0 commit comments

Comments
 (0)