[TYPO3-german] th_mailformplus saveLog.defaultValue
Manuel
news at teamrama.de
Thu May 7 12:43:42 CEST 2009
dank an die entwickler. reinhard konnte helfen:
zum beheben muss die class.tx_thmailformplus_pi1.php editiert werden:
ca. Zeile 4235:
Alt:
if(is_array($value)) {
$sanitizedArray[$key] = $this->sanitizeValues($value);
} elseif(strlen(trim($value)) > 0) {
$value = str_replace("\t","",$value);
$sanitizedArray[$key] = $filter->ft_xss($value,'UTF-8');
}
Neu:
if(is_array($value)) {
$sanitizedArray[$key] = $this->sanitizeValues($value);
} elseif(strlen(trim($value)) > 0) {
$value = str_replace("\t","",$value);
$sanitizedArray[$key] = $filter->ft_xss($value,'UTF-8');
} else {
$sanitizedArray[$key] = $value;
}
gruss, manuel
Manuel schrieb:
> hallo,
>
> ich versuche das CSV-format der zu exportierenden datensätze der
> mailformplus-ext zu beeinflussen. nach anleitung/doku ergibt sich für
> mich folgender code:
>
> plugin.tx_thmailformplus_pi1 {
> saveLog = 1
> saveLog.defaultValue = null
> saveLog.exclude = test,id,submitted,submit
> }
>
> die aufgeführten zeilen stehen im setup-TS. das exkludieren von test,
> id, submitted und submit klappt wunderbar aber die defaultValue-funktion
> schlägt irgendwie nicht an. kann mir nicht vorstellen, dass das ein bug
> sein soll. die funktion haben doch sicher noch mehr leute im einsatz.
> kann mir jemand sagen was ich falsch mache?
>
> hier noch mal der link zum bereich der doku:
> typo3.org/documentation/document-library/extension-manuals/th_mailformplus/4.0.13/view/1/3/#id4184458
>
>
> danke und gruss,
> manuel
More information about the TYPO3-german
mailing list