Active
Project:
Ad Flash
Version:
6.x-2.7
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Jun 2012 at 13:37 UTC
Updated:
17 Oct 2012 at 20:01 UTC
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
Comment #1
codeelegance commentedI am also experiencing this.
Any progress?
Advertisement => 6.x-2.4
ad_flash => 6.x-2.7
Comment #2
asPagurus commentedI 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.
Comment #3
sibany commentedhey 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