amazon.module line 1240:
db_query("UPDATE amazonitem SET pricedate = '01/01/01'");
to:
db_query("UPDATE {amazonitem} SET pricedate = '01/01/01'");
amazon.module line 1240:
db_query("UPDATE amazonitem SET pricedate = '01/01/01'");
to:
db_query("UPDATE {amazonitem} SET pricedate = '01/01/01'");
Comments
Comment #1
peterx commentedI updated to 1.3 and the line the same, just repeated.
Comment #2
peterx commentedAlso about line 590, the following line:
'title' => ($product_type),looks like it should be:
'title' => t($product_type),Comment #3
Prometheus6 commentedIt will be in the next commit.
The $product_type variable is fine. The value is read from a config file.
Comment #4
Prometheus6 commented