Latest Calibre version use | in author name.

This commit is contained in:
Sébastien Lucas 2014-04-02 22:14:52 +02:00
parent 33d6abb503
commit b9687d7f2c
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ class Author extends Base {
public function __construct($pid, $pname, $psort) {
$this->id = $pid;
$this->name = $pname;
$this->name = str_replace("|", ",", $pname);
$this->sort = $psort;
}