kmitgroup / google-checkout-php-sample-code

Automatically exported from code.google.com/p/google-checkout-php-sample-code
0 stars 0 forks source link

Wrong require_once path for googlerequest.php in CheckoutServer2Server() #68

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Using 1.3.1, there seems to be an error with the require path for the 
googlerequest.php file inside the CheckoutServer2Server() function (around 1033 
of the /library/googlecart.php file).  

Currently the path is:

require_once(dirname(__FILE__).'/library/googlerequest.php');

Since we're making this call from inside the /library/ folder already, we 
shouldn't have that in the path, so it should be:

require_once(dirname(__FILE__).'/googlerequest.php');

Original issue reported on code.google.com by char...@dwstudios.net on 13 Jan 2012 at 7:08

GoogleCodeExporter commented 9 years ago
This has been corrected in v1.3.3

Original comment by rwap.services on 28 Aug 2012 at 9:54