Fehler beim erstellen von Inhalten
am 10.10.2008 - 07:00 Uhr in
Morgen,
bekomme, seit dem ich von 6.4 auf 6.5 Update (gestern) vorgenommen habe, folgende Meldung beim Formular Inhalt erstellen, egal welcher Inhalt Typ auch ich auswähle.
* warning: Invalid argument supplied for foreach() in /is/htdocs/wp1115392_3T4QXS7FM3/www/drupal6/modules/views/includes/handlers.inc on line 784.
* warning: Invalid argument supplied for foreach() in /is/htdocs/wp1115392_3T4QXS7FM3/www/drupal6/includes/common.inc on line 1499.
Habe
Views 6.x-2.0-rc5
und alle anderen Module in aktualisierter Version, bis auf biblio, die im Moment aus dem Programm genommen wurde, bei mir aber noch aktiv ist.
Kann mir einer dabei behilflich sein, weil ich nicht weis, woran das liegen kann.
Hier der handlers.inc zweite Zeile
// Doubly ensure that all values are numeric only.
foreach ($filter->value as $id => $value) {
$filter->value[$id] = intval($value);
}
und hier common.inc Zeile 26
/**
* Form an associative array from a linear array.
*
* This function walks through the provided array and constructs an associative
* array out of it. The keys of the resulting array will be the values of the
* input array. The values will be the same as the keys unless a function is
* specified, in which case the output of the function is used for the values
* instead.
*
* @param $array
* A linear array.
* @param $function
* A name of a function to apply to all values before output.
* @result
* An associative array.
*/
function drupal_map_assoc($array, $function = NULL) {
if (!isset($function)) {
$result = array();
foreach ($array as $value) {
$result[$value] = $value;
}
return $result;
}
elseif (function_exists($function)) {
$result = array();
foreach ($array as $value) {
$result[$value] = $function($value);
}
return $result;
}
}
- Anmelden oder Registrieren um Kommentare zu schreiben
Neue Kommentare
vor 13 Stunden 7 Minuten
vor 1 Tag 12 Stunden
vor 1 Tag 19 Stunden
vor 2 Tagen 6 Stunden
vor 2 Tagen 6 Stunden
vor 2 Tagen 6 Stunden
vor 2 Tagen 6 Stunden
vor 2 Tagen 7 Stunden
vor 2 Tagen 8 Stunden
vor 2 Tagen 9 Stunden