Bug #21398 ยป 12391.diff
t3lib/class.t3lib_htmlmail.php (working copy) | ||
---|---|---|
return $attributes;
|
||
}
|
||
/**
|
||
* Implementation of quoted-printable encode.
|
||
* This function was a duplicate of t3lib_div::quoted_printable, thus it's going to be removed.
|
||
* Deprecated since TYPO3 4.0
|
||
*
|
||
* @param string Content to encode
|
||
* @return string The QP encoded string
|
||
* @deprecated since TYPO3 4.0, remove in TYPO 4.3
|
||
*/
|
||
public function quoted_printable($string) {
|
||
return t3lib_div::quoted_printable($string, 76);
|
||
}
|
||
/**
|
||
* Converts a name field
|
||
* Deprecated since TYPO3 4.0
|
||
*
|
||
* @param string $name: the name
|
||
* @return string the name
|
||
* @deprecated since TYPO3 4.0, remove in TYPO3 4.3
|
||
*/
|
||
public function convertName($name) {
|
||
return $name;
|
||
}
|
||
}
|
||
if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_htmlmail.php']) {
|
||
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_htmlmail.php']);
|
||
}
|
||
?>
|
||
?>
|