When you attempt to enable Option Images, you may get the message:
Parse error: syntax error, unexpected ';', expecting ')' in /sites/all/modules/uc_option_image/uc_option_image.install on line 11
The problem is that in that file at line #11 it reads:
'filename' => 'option_image_0_0_0';
and should read:
'filename' => 'option_image_0_0_0',
When I made this correction, Option Images installed and enabled correctly.
Comments
Comment #1
TrickerTreater commentedCheck post #17. :)
http://drupal.org/node/550344
Comment #2
sappha58 commentedThanks; I hadn't seen that.