In the past I have kept the config outside of the web directory to enhance security and changed the location of it in the main.php in previous versions. I assume I can still keep the config script out of the web direectory and change line 64 in ubbthreads.php from

Code
 require_once("includes/config.inc.php"); 

to the full path

Code
 require_once("full/path/to/my/config.inc.php");


Will this break anything and is there anywhere else I would need to change the path?