Skip to content

Commit a86f816

Browse files
authored
Merge pull request #28 from dmitryd/feature/v10
Fix #27: implement support for TYPO3 v10
2 parents 9a90806 + 500de81 commit a86f816

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

ext_emconf.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
'uploadfolder' => false,
99
'createDirs' => '',
1010
'clearCacheOnLoad' => false,
11-
'version' => '8.1.1',
11+
'version' => '10.0.0',
1212
'constraints' => [
1313
'depends' => [
1414
'typo3' => '8.7.19-10.999.999',

ext_tables.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ CREATE TABLE tx_openid_nonce_store (
4444
PRIMARY KEY (uid),
4545
UNIQUE KEY nonce (server_url(255),tstamp,salt),
4646
KEY crdate (crdate)
47-
) DEFAULT CHARSET = utf8 COLLATE utf8_general_ci ENGINE=InnoDB;
47+
) ENGINE=InnoDB;

lib/php-openid/README.txt

+3
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ We use only "Auth" directory from the library and include a copy of COPYING file
44
Current version of the library is 3.0.1
55
(git-checkout c59928322ce2508094473c76c2e1c5294f97e743; # from 2020-04-07)
66
Source: https://github.com/openid/php-openid
7+
8+
Additionally copied the following bugfix to this version: https://github.com/openid/php-openid/pull/140
9+

0 commit comments

Comments
 (0)