diff options
author | MaZderMind | 2015-11-08 20:36:45 +0100 |
---|---|---|
committer | MaZderMind | 2015-11-08 20:36:45 +0100 |
commit | afc1a5caf3feaabf2768560705bdb92a2607a19c (patch) | |
tree | 5018fbd9c8d008ddc48d49479dd6b24f6b2f8eb0 /model | |
parent | 61c9cf52b0c015951351b47148cdecb47c680bfa (diff) |
fix thumbs url
Diffstat (limited to 'model')
-rw-r--r-- | model/Room.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/model/Room.php b/model/Room.php index 6e37043..124d057 100644 --- a/model/Room.php +++ b/model/Room.php @@ -43,7 +43,7 @@ class Room extends ModelBase } public function getThumb() { - return 'thumbs/'.$this->getStream().'.png'; + return '../thumbs/'.$this->getStream().'.png'; } public function getLink() { |