diff options
author | Urban Müller | 2018-06-21 16:12:20 +0200 |
---|---|---|
committer | Urban Müller | 2018-06-21 16:12:20 +0200 |
commit | 05e7ceefa1f0a29c665381b54ac882f260ae6c22 (patch) | |
tree | d9107f13ce76a21d77e8be2670f0b2e8d96f19e7 /it_mail.class | |
parent | c8319c784267f81e2884a076365b8ca36f4ce0b2 (diff) | |
download | itools-05e7ceefa1f0a29c665381b54ac882f260ae6c22.tar.gz itools-05e7ceefa1f0a29c665381b54ac882f260ae6c22.tar.bz2 itools-05e7ceefa1f0a29c665381b54ac882f260ae6c22.zip |
use safer it:: variants of file funcs
Diffstat (limited to 'it_mail.class')
-rw-r--r-- | it_mail.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_mail.class b/it_mail.class index 26ba883..a407e54 100644 --- a/it_mail.class +++ b/it_mail.class @@ -172,7 +172,7 @@ function add_file($filename, $p = array(), $legacy_name = null) if (!is_array($p)) # legacy mode: two scalars mime type / name $p = array('mimetype' => $p) + ($legacy_name ? array('name' => $legacy_name) : array()); - return $this->add_attachment(file_get_contents($filename), $p + array('name' => basename($filename))); + return $this->add_attachment(it::file_get_contents($filename), $p + array('name' => basename($filename))); } |