Skip to content
Snippets Groups Projects
Commit d1e93953 authored by Rasmus Fuhse's avatar Rasmus Fuhse
Browse files

fixes #9

parent 83cce92b
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ class MarketImage extends SimpleORMap {
}
public function getURL() {
return URLHelper::getURL("plugins.php/pluginmarket/presenting/image/".$this->getId(), array(), true);
return "plugins.php/pluginmarket/presenting/image/".$this->getId();
}
public function delete() {
......
......@@ -68,7 +68,7 @@ class MarketPlugin extends SimpleORMap {
public function getLogoURL() {
$firstimage = $this->images->first();
return $firstimage ? $firstimage->getURL() : Assets::image_path("icons/blue/plugin.svg");
return $firstimage ? $firstimage->getURL() : "assets/images/icons/blue/plugin.svg";
}
public function setTags($tags) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment