Skip to content

Commit

Permalink
Release phpwcms v1.9.40, the legacy release
Browse files Browse the repository at this point in the history
Fixes issue #361, innodb_default_row_format needs to be with SET GLOBAL
  • Loading branch information
slackero committed Aug 7, 2024
1 parent d138cde commit 700fe25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/inc_lib/revision/revision.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
*
**/

const PHPWCMS_VERSION = '1.9.39';
const PHPWCMS_RELEASE_DATE = '2024/07/28';
const PHPWCMS_VERSION = '1.9.40';
const PHPWCMS_RELEASE_DATE = '2024/08/06';
const PHPWCMS_REVISION = '553';
2 changes: 1 addition & 1 deletion setup/inc/setup.check.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@

//mysqli_query($db, 'SET storage_engine=MYISAM');
mysqli_query($db, 'SET SQL_MODE=NO_ENGINE_SUBSTITUTION');
mysqli_query($db, 'SET innodb_default_row_format=DYNAMIC');
mysqli_query($db, 'SET GLOBAL innodb_default_row_format=DYNAMIC');

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

0 comments on commit 700fe25

Please sign in to comment.