Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
19e780c5
Commit
19e780c5
authored
7 years ago
by
Laurent Destailleur
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #7346 from hregis/6.0_bug3
Fix: avoid warning
parents
646e8713
67e9b65a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/core/modules/user/doc/doc_generic_user_odt.modules.php
+8
-7
8 additions, 7 deletions
...cs/core/modules/user/doc/doc_generic_user_odt.modules.php
with
8 additions
and
7 deletions
htdocs/core/modules/user/doc/doc_generic_user_odt.modules.php
+
8
−
7
View file @
19e780c5
...
...
@@ -313,7 +313,7 @@ class doc_generic_user_odt extends ModelePDFUser
{
$socobject
=
$object
->
client
;
}
// Open and load template
require_once
ODTPHP_PATH
.
'odf.php'
;
try
{
...
...
@@ -332,7 +332,7 @@ class doc_generic_user_odt extends ModelePDFUser
$this
->
error
=
$e
->
getMessage
();
return
-
1
;
}
// Make substitutions into odt
$array_user
=
$this
->
get_substitutionarray_user
(
$object
,
$outputlangs
);
$array_soc
=
$this
->
get_substitutionarray_mysoc
(
$mysoc
,
$outputlangs
);
...
...
@@ -366,7 +366,7 @@ class doc_generic_user_odt extends ModelePDFUser
{
}
}
// Replace labels translated
$tmparray
=
$outputlangs
->
get_translations_for_substitutions
();
foreach
(
$tmparray
as
$key
=>
$value
)
...
...
@@ -420,12 +420,13 @@ class doc_generic_user_odt extends ModelePDFUser
return
-
1
;
}
function
get_substitutionarray_object
(
$object
,
$outputlangs
)
{
function
get_substitutionarray_object
(
$object
,
$outputlangs
,
$array_key
=
'object'
)
{
$array_other
=
array
();
foreach
(
$object
as
$key
=>
$value
)
{
if
(
!
is_array
(
$value
)
&&
!
is_object
(
$value
))
{
$array_other
[
'object
_'
.
$key
]
=
$value
;
if
(
!
is_array
(
$value
)
&&
!
is_object
(
$value
))
{
$array_other
[
$array_key
.
'
_'
.
$key
]
=
$value
;
}
}
}
return
$array_other
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment