Anyone been able to upgrade this module to drupal 4.6?

Comments

TDobes’s picture

Does the CVS version not work with 4.6? If not, please reopen this issue with a specific description of the problem (error message presented or faulty behavior).

blindsheep’s picture

The CVS version similarly doesn't work as it hasn't been updated in 4-5 months.

I can offer a partial solution as follows:

Changing lines 74-76 of quote.module will make it no longer produce error messages when being enabled:

from

function quote_html_head() {
  return '<link type="text/css" rel="stylesheet" href="'. module_get_path('quote') .'/quote.css" />';
}

to

function quote_html_head() {
  return '<link type="text/css" rel="stylesheet" href="'. drupal_get_path('module','quote') .'/quote.css" />';
}

For some reason it refuses to load the quote.css file though... so basically you can enable the quote module, but it won't put your quotes in the proper formatting... any solutions?

TDobes’s picture

You are most certainly using the wrong (non-CVS) version. The newest version at this time is 1.20. You can determine the version you are using by reading the id on the second line of the file (autogenerated by CVS). I am certain you are using an old version because the line you suggested changing was already changed... 5 months ago... by me. ;-)

I believe you want http://drupal.org/files/projects/quote-cvs.tar.gz

Does that work?

Zen’s picture

Priority: Critical » Normal
Status: Active » Closed (won't fix)