Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
7f5684a6
Commit
7f5684a6
authored
Feb 10, 2017
by
Carsten Rose
Browse files
Store.php: added condition to suppress exception if running on CI
parent
7eeed2a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/store/Store.php
View file @
7f5684a6
...
...
@@ -408,7 +408,8 @@ class Store {
if
(
is_string
(
$value
))
{
$arr
[
$key
]
=
\
normalizer
::
normalize
(
$value
);
}
else
{
if
(
!
is_numeric
(
$value
))
{
// Check of HTTP_ACCEPT_ENCODING is only to detect if phpUnit is running.
if
(
isset
(
$_SERVER
[
'HTTP_ACCEPT_ENCODING'
])
&&
!
is_numeric
(
$value
))
{
throw
new
qfq\CodeException
(
"Expect type 'string'"
,
ERROR_UNEXPECTED_TYPE
);
}
}
...
...
less/qfq-bs.css.less
View file @
7f5684a6
...
...
@@ -115,3 +115,17 @@ i.@{spinner_class} {
text-align: right;
padding-right: 0;
}
.uploaded-file {
padding-top: 4px;
}
// Mit BB anschauen wie man die NOTE Felder formatiert
//
//.text-input {
// padding-top: 7px;
//}
//
//.text-note {
// padding-top: 7px;
//}
\ No newline at end of file
Write
Preview
Markdown
is supported
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