I am receiving the following error in PHP:
Notice: Undefined offset: 1 on line 552 in file includes/classes/ia.core.smarty.php
Here is the PHP code that causes it:
} else { // this scheme used by plugins
list($path, $file) = explode('|', $params['file']);
$type = !isset($params['type']) ? 'thumbnail' : $params['type'];
$url = $iaCore->iaView->assetsUrl . 'uploads/' . $path . $type . '/' . $file;
}
What does the error mean? On pages i get this error thumbnails are not displayed. Thanks