Index: branches/5.0.x/core/units/fck/fck_eh.php =================================================================== diff -u -r12117 -r12202 --- branches/5.0.x/core/units/fck/fck_eh.php (.../fck_eh.php) (revision 12117) +++ branches/5.0.x/core/units/fck/fck_eh.php (.../fck_eh.php) (revision 12202) @@ -1,6 +1,6 @@ Application->GetVar('old_name'); $new_name = $this->Application->GetVar('new_name'); $folder = $this->Application->GetVar('folder'); - $sServerDir = WRITEABLE.'/user_files/'.$folder.'/'; + $sServerDir = WRITEABLE . '/user_files/' . $folder . '/'; if (!file_exists($sServerDir.$old_name) || !is_file($sServerDir.$old_name)) { echo 204; @@ -136,7 +136,7 @@ // echo $files; $a_files = explode('|', $files); $folder = $this->Application->GetVar('folder'); - $sServerDir = WRITEABLE.'/user_files/'.$folder.'/'; + $sServerDir = WRITEABLE . '/user_files/' . $folder . '/'; foreach ($a_files AS $file) { @unlink($sServerDir.$file); @@ -167,7 +167,7 @@ $new_folder = $this->Application->GetVar('new_folder'); $current_folder = $this->Application->GetVar('current_folder'); - $folderPath = WRITEABLE.'/user_files'.'/'.$current_folder."/".$new_folder; + $folderPath = WRITEABLE . '/user_files' . '/' . $current_folder . "/" . $new_folder; if ( file_exists( $folderPath ) && is_dir($folderPath)) { echo "101"; }