Needs review
Project:
Amazon Product Advertisement API
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
12 Jul 2011 at 12:35 UTC
Updated:
21 Aug 2015 at 23:28 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
rfayThanks for your report.
If you can report the ASIN of the item that causes the warning it will make it much easier to fix this.
Comment #2
rfayWell, the Theatrical Release Date has been removed from the current Amazon WSDL, http://aws.amazon.com/archives/Product-Advertising-API/8967000559514506
So I guess we just need to remove it all
Comment #3
rfayCommitted the attached patch: 7230ee78bd7e5d22a5c9987938ad3dd18a0629d0
Comment #4
rfayIf somebody needs this for D6, just port the patch.
Comment #5
the_g_bomb commentedI've had a stab at the backport and think I got all references to theatricalreleasedate, theatricalreleaseyear and releaseyear, which seem to be the included in $variables at various points all relating to this. Wasn't a direct backport as the module has change dramatically between D6 and D7.
Comment #6
rfaythe_g_bomb++
Comment #7
hmt3design commentedThere's 0 bytes in this patch - is the link wrong? Also, forgive the newbie question, but where would I paste it in?
Comment #8
the_g_bomb commentedHopefully this patch is better
Comment #9
the_g_bomb commentedYou need to have git installed to apply patches
Download the patch to your working directory, ideally to the folder with the amazon module files in it. Apply the patch with the following command:
git apply -v [patchname.patch]in this case you would need to use:
git apply -v amazon-remove_theatrical_release_1216240_04.patchyou can then remove the patch file as that command applies the changes required to the module code files.
see http://drupal.org/project/amazon/git-instructions for more details about git instructions.
Comment #10
the_g_bomb commentedHowever the patch I have just supplied is for the D6 branch, your other issue sounds like your issue is with the D7 branch, is that correct? If so the code for that should be commited and already in the D7 code.
Comment #11
willvincent commentedActually, you don't need to have git installed to apply a patch.
patch -p1 < [patchfile.patch]Will work as well.