lines 94-99
have this:
if ( is_writable($GLOBALS['Dataface_Globals_Local_Templates_c']) ){
$this->compile_dir = $GLOBALS['Dataface_Globals_Local_Templates_c'];
} else if ( is_writable($GLOBALS['Dataface_Globals_Templates_c'])){
$this->compile_dir = $GLOBALS['Dataface_Globals_Templates_c'];
}
if both of these fail then $compile_dir on line 227
$compile_dir = $this->compile_dir.'/'.$skin;
is empty and will create a "Dataface" directory in the C:\ on windows and in root directory in *nix
Not sure if this is a bug or not, thought I should mention it.
Walter