mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Fix #1698 모바일 레이아웃의 썸네일을 PC 레이아웃 폴더에서 찾는 문제 고침
This commit is contained in:
parent
2e92fc4f40
commit
007389be79
1 changed files with 5 additions and 1 deletions
|
|
@ -93,10 +93,14 @@ class layoutModel extends layout
|
|||
{
|
||||
$thumbnailPath = sprintf('./themes/%s/layouts/%s/thumbnail.png' , $token[0], $token[1]);
|
||||
}
|
||||
else
|
||||
else if($layoutType == 'P')
|
||||
{
|
||||
$thumbnailPath = sprintf('./layouts/%s/thumbnail.png' , $val->layout);
|
||||
}
|
||||
else if($layoutType == 'M')
|
||||
{
|
||||
$thumbnailPath = sprintf('./m.layouts/%s/thumbnail.png' , $val->layout);
|
||||
}
|
||||
if(is_readable($thumbnailPath))
|
||||
{
|
||||
$val->thumbnail = $thumbnailPath;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue