Contao port of Bootstrap Tags Input by Tim Schlechter that provides a front and back end field to add custom values like tags to an field or database table.
0
stars
0
forks
source link
Warning Tagsinput line 618, wenn $this->varValue nicht gesetzt ist #1
In Zusammenahng mit heimrichhannot/contao-filecredits wird folgende Warnung ausgegeben, wenn das Feld für die Quellenangabe leer ist:
Warning: count(): Parameter must be an array or an object that implements Countable in /srv/htdocs/arne/contao4/bds/vendor/heimrichhannot/contao-tagsinput/widgets/TagsInput.php on line 618
Vorschlag für Zeile 618 ersetzten mit:
$i = 0;
if (isset($this->varValue)) {
$i = count($this->varValue); // add new values after last varValue index
}
In Zusammenahng mit heimrichhannot/contao-filecredits wird folgende Warnung ausgegeben, wenn das Feld für die Quellenangabe leer ist:
Vorschlag für Zeile 618 ersetzten mit: