OMP 1.2: oai error with getCoverageGeo

Hi all,
the installation of my new version of OMP goes on and now I’m facing an error on OAI-PMH page.
When I call:

http://[my-path]/oai?verb=ListRecords&metadataPrefix=oai_dc

I have this error:
Fatal error: Call to undefined method PublishedMonograph::getCoverageGeo() in /home/cab/hosted/omp/www/plugins/metadata/dc11/filter/Dc11SchemaPublicationFormatAdapter.inc.php on line 171

As a workaround i changed the line 171 from:

$coverage = (array) $monograph->getCoverageGeo(null);

To:

$coverage = array();

And now the ListstRecords works well, but I don’t think that it is the right solution.
Do you?

Thanks,
A.

I had the same issue : is your disable_path_info set “off” ?

Hi @Alfredo_Cosco,

Try applying this patch:

Regards,
Alec Smecher
Public Knowledge Project Team

It Works!
Thank you,
A.