Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
1001d7f4
Commit
1001d7f4
authored
Feb 18, 2018
by
Carsten Rose
Browse files
Make DB_INIT in config.qfq.ini set by default.
Fix PHPUnit tests
parent
1447b3a1
Changes
4
Hide whitespace changes
Inline
Side-by-side
extension/Documentation/Manual.rst
View file @
1001d7f4
...
...
@@ -402,7 +402,7 @@ Example: *typo3conf/config.qfq.ini*
BASE_URL_PRINT = http://url.my/
; WKHTMLTOPDF = /opt/wkhtmltox/bin/wkhtmltopdf
DB_INIT = set names utf8
;
DB_INIT = set names utf8
; auto | always | never
; DB_UPDATE = auto
...
...
extension/config.qfq.example.ini
View file @
1001d7f4
...
...
@@ -6,7 +6,7 @@
BASE_URL_PRINT
=
http://url.my/
; WKHTMLTOPDF = /opt/wkhtmltox/bin/wkhtmltopdf
DB_INIT
=
set names utf8
;
DB_INIT = set names utf8
; auto | always | never
; DB_UPDATE = auto
...
...
extension/qfq/qfq/store/Config.php
View file @
1001d7f4
...
...
@@ -159,6 +159,7 @@ class Config {
$default
=
[
SYSTEM_DB_INIT
=>
'set names utf8'
,
SYSTEM_DB_INDEX_DATA
=>
DB_INDEX_DEFAULT
,
SYSTEM_DB_INDEX_QFQ
=>
DB_INDEX_DEFAULT
,
...
...
extension/qfq/tests/phpunit/BuildFormPlainTest.php
View file @
1001d7f4
...
...
@@ -522,7 +522,6 @@ class BuildFormPlainTest extends AbstractDatabaseTest {
parent
::
setUp
();
// Use always the latest (production) FormEditor: played during QuickFormQuery()
$this
->
dbArray
[
DB_INDEX_DEFAULT
]
->
sql
(
"DROP TABLE IF EXISTS `Form`"
);
$this
->
dbArray
[
DB_INDEX_DEFAULT
]
->
sql
(
"DROP TABLE IF EXISTS `FormElement`"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment