From db0fed0485cb285ddd3c5313efb37433c75b3395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Lucas?= Date: Thu, 13 Mar 2014 20:47:17 +0100 Subject: [PATCH] Fix a regression in series handling in epub metadata. --- resources/php-epub-meta/epub.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/php-epub-meta/epub.php b/resources/php-epub-meta/epub.php index bbce683..94abf9c 100644 --- a/resources/php-epub-meta/epub.php +++ b/resources/php-epub-meta/epub.php @@ -451,7 +451,7 @@ class EPub { * @param string $serie */ public function Serie($serie=false){ - return $this->getset('opf:meta',$serie,'name','cops:series','content'); + return $this->getset('opf:meta',$serie,'name','calibre:series','content'); } /** @@ -460,7 +460,7 @@ class EPub { * @param string $serieIndex */ public function SerieIndex($serieIndex=false){ - return $this->getset('opf:meta',$serieIndex,'name','cops:series_index','content'); + return $this->getset('opf:meta',$serieIndex,'name','calibre:series_index','content'); } /**