in apiClient.php :
set_include_path("$cwd" . PATH_SEPARATOR . ":" . get_include_path());
which breaks include_path because of PATH_SEPARATOR . ":"
The good instruction should be :
set_include_path("$cwd" . PATH_SEPARATOR . get_include_path());
Original issue reported on code.google.com by jnol...@gmail.com on 5 Nov 2011 at 10:15
Original issue reported on code.google.com by
jnol...@gmail.com
on 5 Nov 2011 at 10:15