/**
  * Makes a form for creating new folders in the filemount the user is browsing.
  * The folder creation request is sent to the tce_file.php script in the core which will handle the creation.
  *
  * @param	string		Absolute filepath on server in which to create the new folder.
  * @return	string		HTML for the create folder form.
  */
 function createFolder($path)
 {
     if ($path != '/' && @is_dir($path)) {
         return parent::createFolder($path);
     }
     return '';
 }