anuj607 / google-api-php-client

Automatically exported from code.google.com/p/google-api-php-client
Apache License 2.0
0 stars 0 forks source link

include path apiClient.php #39

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
Thank you for reporting this issue!
It is now fixed in r258.

Original comment by chirags@google.com on 8 Nov 2011 at 6:17