anmerkung: snapshot contenido-cvs-2004-09-17.tar
Verfasst: Sa 18. Sep 2004, 10:50
include.mod_edit_form.php
findet sich
sollte aber
sein, ansonsten
Warning: array_merge() [function.array-merge]: Argument #2 is not an array in e:\contenido\contenido-cvs-2004-09-17.tar\contenido_sources\contenido\includes\include.mod_edit_form.php on line 137
etwas änliches in
include.lay_edit_form.php
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in e:\contenido\contenido-cvs-2004-09-17.tar\contenido_sources\contenido\includes\include.lay_edit_form.php on line 67
nur ist $types vorher nicht definiert...
findet sich
Code: Alles auswählen
while ($layout = $layouts->next())
{
$types = array_merge(explode(";",$layout->getProperty("layout", "used-types")), $types);
}
while ($db2->next_record())
{
if ($db2->f("type") != "")
{
$types[] = $db2->f("type");
}
}
Code: Alles auswählen
while ($db2->next_record())
{
if ($db2->f("type") != "")
{
$types[] = $db2->f("type");
}
}
while ($layout = $layouts->next())
{
$types = array_merge(explode(";",$layout->getProperty("layout", "used-types")), $types);
}
Warning: array_merge() [function.array-merge]: Argument #2 is not an array in e:\contenido\contenido-cvs-2004-09-17.tar\contenido_sources\contenido\includes\include.mod_edit_form.php on line 137
etwas änliches in
include.lay_edit_form.php
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in e:\contenido\contenido-cvs-2004-09-17.tar\contenido_sources\contenido\includes\include.lay_edit_form.php on line 67
Code: Alles auswählen
$types = array_merge($types, tplGetContainerTypes($idlay, $value));