diff options
author | M. Dent <dentm42@gmail.com> | 2019-01-09 19:09:20 +0100 |
---|---|---|
committer | M. Dent <dentm42@gmail.com> | 2019-01-09 19:09:20 +0100 |
commit | b22caef65fe2d87d702592bd0ecb057d21c168dd (patch) | |
tree | e7c03427486d012a2996ae21b25070eeafca74c4 /vendor/bshaffer/oauth2-server-php/test/lib/OAuth2 | |
parent | db4281164cf788eece76771bf69f08d7926600f2 (diff) | |
parent | dbd230da7407ac70483c004bc82f4b8619c42760 (diff) | |
download | volse-hubzilla-b22caef65fe2d87d702592bd0ecb057d21c168dd.tar.gz volse-hubzilla-b22caef65fe2d87d702592bd0ecb057d21c168dd.tar.bz2 volse-hubzilla-b22caef65fe2d87d702592bd0ecb057d21c168dd.zip |
Merge branch 'composer_updates' into 'dev'
update composer libs
See merge request hubzilla/core!1455
Diffstat (limited to 'vendor/bshaffer/oauth2-server-php/test/lib/OAuth2')
-rw-r--r-- | vendor/bshaffer/oauth2-server-php/test/lib/OAuth2/Storage/Bootstrap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/bshaffer/oauth2-server-php/test/lib/OAuth2/Storage/Bootstrap.php b/vendor/bshaffer/oauth2-server-php/test/lib/OAuth2/Storage/Bootstrap.php index 3d7bdd4e9..8e428f9b5 100644 --- a/vendor/bshaffer/oauth2-server-php/test/lib/OAuth2/Storage/Bootstrap.php +++ b/vendor/bshaffer/oauth2-server-php/test/lib/OAuth2/Storage/Bootstrap.php @@ -36,7 +36,7 @@ class Bootstrap { if (!$this->sqlite) { $this->removeSqliteDb(); - $pdo = new \PDO(sprintf('sqlite://%s', $this->getSqliteDir())); + $pdo = new \PDO(sprintf('sqlite:%s', $this->getSqliteDir())); $pdo->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); $this->createSqliteDb($pdo); |