Fixes a Undefined index: thumbnail in daily page.
This commit is contained in:
parent
1a6d61766a
commit
8ba951640c
1 changed files with 1 additions and 1 deletions
|
@ -465,7 +465,7 @@ function showDaily($pageBuilder, $LINKSDB, $conf, $pluginManager, $loginManager)
|
||||||
// Description: 836 characters gives roughly 342 pixel height.
|
// Description: 836 characters gives roughly 342 pixel height.
|
||||||
// This is not perfect, but it's usually OK.
|
// This is not perfect, but it's usually OK.
|
||||||
$length = strlen($link['title']) + (342 * strlen($link['description'])) / 836;
|
$length = strlen($link['title']) + (342 * strlen($link['description'])) / 836;
|
||||||
if ($link['thumbnail']) {
|
if (! empty($link['thumbnail'])) {
|
||||||
$length += 100; // 1 thumbnails roughly takes 100 pixels height.
|
$length += 100; // 1 thumbnails roughly takes 100 pixels height.
|
||||||
}
|
}
|
||||||
// Then put in column which is the less filled:
|
// Then put in column which is the less filled:
|
||||||
|
|
Loading…
Reference in a new issue