Bug #17121 » 0005225.patch
t3lib/class.t3lib_basicfilefunc.php (Arbeitskopie) | ||
---|---|---|
* @return string Output string
|
||
*/
|
||
function cleanDirectoryName($theDir) {
|
||
return preg_replace('/[\/\. ]*$/','',$this->rmDoubleSlash($theDir));
|
||
return preg_replace('/(^\.+)?[\/ ]*$/','',$this->rmDoubleSlash($theDir));
|
||
}
|
||
/**
|