Should fix url rewriting with multi database. re #40

This commit is contained in:
Sébastien Lucas 2013-04-05 08:14:44 +02:00
parent d01b23b615
commit ad115f08c3
2 changed files with 8 additions and 4 deletions

View file

@ -95,10 +95,12 @@ class Data extends Base {
if ($config['cops_use_url_rewriting'] == "1")
{
$database = "";
if (!is_null (GetUrlParam (DB))) $database = GetUrlParam (DB) . "/";
if ($config['cops_provide_kepub'] == "1" && preg_match("/Kobo/", $_SERVER['HTTP_USER_AGENT'])) {
return "download/" . $this->id . "/" . urlencode ($this->getUpdatedFilenameKepub ());
return "download/" . $this->id . "/" . $database . urlencode ($this->getUpdatedFilenameKepub ());
} else {
return "download/" . $this->id . "/" . urlencode ($this->getFilename ());
return "download/" . $this->id . "/" . $database . urlencode ($this->getFilename ());
}
}
else