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
061be9ca
Commit
061be9ca
authored
13 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Use filesystem encoding
parent
6189acc3
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/class/CMailFile.class.php
+6
-4
6 additions, 4 deletions
htdocs/core/class/CMailFile.class.php
with
6 additions
and
4 deletions
htdocs/core/class/CMailFile.class.php
+
6
−
4
View file @
061be9ca
...
...
@@ -466,12 +466,12 @@ class CMailFile
/**
* Read a file on disk and return encoded content for emails (mode = 'mail')
*
* @param
sourcefile
* @return <0 if KO, encoded string if OK
* @param
string $
sourcefile
Path to file to encode
* @return
int
<0 if KO, encoded string if OK
*/
function
_encode_file
(
$sourcefile
)
{
$newsourcefile
=
utf8_check
(
$sourcefile
)
?
utf8_decode
(
$sourcefile
)
:
$sourcefile
;
// is_readable and file_get_contents need ISO filename
$newsourcefile
=
dol_osencode
(
$sourcefile
);
if
(
is_readable
(
$newsourcefile
))
{
...
...
@@ -481,7 +481,7 @@ class CMailFile
}
else
{
$this
->
error
=
"Error: Can't read file '
$sourcefile
'
"
;
$this
->
error
=
"Error: Can't read file '
"
.
$sourcefile
.
"' into _encode_file
"
;
dol_syslog
(
"CMailFile::encode_file: "
.
$this
->
error
,
LOG_ERR
);
return
-
1
;
}
...
...
@@ -491,6 +491,8 @@ class CMailFile
/**
* Write content of a SMTP request into a dump file (mode = all)
* Used for debugging.
*
* @return void
*/
function
dump_mail
()
{
...
...
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