Martialdelastic / google-api-adwords-php

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

line 4156 of CampaignService.php - second arg to class_exists() is missing, should be FALSE #15

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Change line 4156 of CampaignService 
from:
if (!class_exists("CampaignService")) {
to:
if (!class_exists("CampaignService",FALSE)) {

What steps will reproduce the problem?
1. register own autoloader, that doesn't find library classes
2. perform a simple request to Campaign service
3. exception is thrown

What is the expected output? What do you see instead?
The output is : Class don't exist, Run build.php if it should exist -
CampaignService
The correct output is a request result.

What version of the product are you using? On what operating system?
aw_api_php_lib_2.0.0, Ubuntu 8.10

Please provide any additional information below.

Original issue reported on code.google.com by moto_k...@tlen.pl on 5 Mar 2010 at 12:19

GoogleCodeExporter commented 8 years ago

Original comment by api.ekol...@gmail.com on 15 Mar 2010 at 5:50

GoogleCodeExporter commented 8 years ago

Original comment by api.ekol...@gmail.com on 15 Mar 2010 at 5:52

GoogleCodeExporter commented 8 years ago
Fixed in 2.0.1

Original comment by api.ekol...@gmail.com on 15 Mar 2010 at 7:45