I have written bug-report for Ad-module (http://drupal.org/node/1648986) but now I think it fits here.
After update Ad 2.2->2.4 I recieve error when I try create new flash-ad ("You must specify a valid Destination URL.") - If I am right, now ad module show block with "Destination URL" after user click on Save button. But Ad-flash module does not know this.

Comments

codeelegance’s picture

I am also experiencing this.
Any progress?
Advertisement => 6.x-2.4
ad_flash => 6.x-2.7

asPagurus’s picture

I have used brute force - "switch off" validating process in ad_flash module (lines 219-221 in ad_flash module). It isn't correct solution of course, but for now I can create flash ad.

sibany’s picture

hey asPagurus! thanks!

Advertisement --> 6.x-2.4
ad_flash --> 6.x-2.7

it worked --- > ad_flash/ad_flash.module <-- 2.7 --> Lines (229-234) in my case...

i disable...

/* case 'validate':
if (!valid_url($node->url, TRUE)) {
form_set_error('url', t('You must specify a valid %field.', array('%field' => t('Destination URL'))));
}
break;
*/

worked and Destination URL field showed up! :)

Thanks