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
96c33317
Commit
96c33317
authored
Feb 29, 2016
by
Carsten Rose
Browse files
Report: instantiate SIP.
Store: fixed typo in required_once QuickFormQuery: rewrote instantiation of Report
parent
18bac330
Changes
3
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/QuickFormQuery.php
View file @
96c33317
...
...
@@ -319,7 +319,7 @@ class QuickFormQuery {
* @return string
*/
private
function
doReport
()
{
$report
=
new
Report
(
$this
->
t3data
,
$this
->
s
ip
);
$report
=
new
Report
(
$this
->
t3data
,
$this
->
s
tore
->
getVar
(
SYSTEM_SESSIONNAME
,
STORE_SYSTEM
)
);
$html
=
$report
->
process
();
...
...
extension/qfq/qfq/report/Report.php
View file @
96c33317
...
...
@@ -79,10 +79,10 @@ class Report {
*
* @param array $t3data
*/
public
function
__construct
(
array
$t3data
,
SIP
$sip
)
{
public
function
__construct
(
array
$t3data
,
$sessionName
)
{
$this
->
t3data
=
$t3data
;
$this
->
sip
=
$sip
;
$this
->
sip
=
new
Sip
(
$sessionName
)
;
$this
->
page_control
[
"msgbox"
][
"pagec"
]
=
"Please confirm!"
;
...
...
extension/qfq/qfq/store/Store.php
View file @
96c33317
...
...
@@ -14,7 +14,7 @@ use qfq\OnArray;
use
qfq
;
require_once
(
__DIR__
.
'/../../qfq/helper/KeyValueStringParser.php'
);
require_once
(
__DIR__
.
'/../../qfq/helper/
s
anitize.php'
);
require_once
(
__DIR__
.
'/../../qfq/helper/
S
anitize.php'
);
require_once
(
__DIR__
.
'/../../qfq/Constants.php'
);
require_once
(
__DIR__
.
'/../../qfq/store/Sip.php'
);
require_once
(
__DIR__
.
'/../../qfq/Database.php'
);
...
...
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