Bug #20701 ยป 0011451.patch
t3lib/class.t3lib_htmlmail.php (Arbeitskopie) | ||
---|---|---|
*/
|
||
public function split_fileref($fileref) {
|
||
$info = array();
|
||
if (preg_match('/(.*/)(.*)$/', $fileref, $reg)) {
|
||
if (preg_match('/(.*\/)(.*)$/', $fileref, $reg)) {
|
||
$info['path'] = $reg[1];
|
||
$info['file'] = $reg[2];
|
||
} else {
|