Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Maarch
maarchRM
Commits
8f41a527
Commit
8f41a527
authored
Feb 25, 2020
by
Benjamin Rousselière
Browse files
fix/log_stream_error
parent
8d6809ad
Pipeline
#7013
failed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/bundle/recordsManagement/Controller/log.php
View file @
8f41a527
...
...
@@ -468,14 +468,17 @@ class log implements archiveDescriptionInterface
return
$path
;
}
public
function
contents
(
$type
,
$archiveId
,
$resourceId
)
{
public
function
contents
(
$type
,
$archiveId
,
$resourceId
)
{
$archiveController
=
\
laabs
::
newController
(
'recordsManagement/archive'
);
$res
=
$archiveController
->
consultation
(
$archiveId
,
$resourceId
);
$stream
=
(
stream_get_contents
(
$res
->
attachment
->
data
));
$journal
=
$type
.
PHP_EOL
;
$journal
.
=
$archiveId
.
','
.
$resourceId
.
PHP_EOL
;
$journal
.
=
base64_decode
(
$res
->
attachment
->
data
)
;
$journal
.
=
$stream
;
return
$journal
;
}
...
...
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