If the base path of your site is not /, then the path to the quotation image is not saved correctly and thus the quotation mark graphics do not show.

For example, if the root of my drupal site is:
www.example.com/my-site/
this module will not work.

To fix, simply prepend base_path() to the saved path. Change line 144 from:
$file = str_replace('(images', '(/' . drupal_get_path('module', 'quotations') . '/images', $file);

to:
$file = str_replace('(images', '(' . base_path() . drupal_get_path('module', 'quotations') . '/images', $file);

Comments

attheshow’s picture

Status: Needs review » Fixed

Just fixed in dev. Please test and let me know if you find any issues. Thanks.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

bbenone’s picture

BTW, I put the dev version on two live sites last week. So far so good. Thanks.