The following method of FileStyles gives a broken link. Version 2 of media module doesn't provide such a link, maybe this bit should test for version before providing a link that doesn't work?


function linkToMedia($effect) {
    // If we're using the media module, then link to its media page.
    if (module_exists('media') && ($fid = $this->getFid())) {
      $link = $this->setLink('media/'. $fid);
    }
    ...

Comments

damontgomery’s picture