Actions
Bug #14414
closedfunction UPDATEquery in t3lib_DB class
Start date:
2004-11-25
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.0
PHP Version:
4
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
i want to build a query for updating substingsd of a tablefield in my own extension. therefore i use the funktion exec_updatequery like following:
$fieldArray = Array("text" => "REPLACE");
$result = $GLOBALS['TYPO3_DB']->exec_UPDATEquery(
"tx_mzrightboxes",
"",
$fieldArray
);
so all datas in field "text" was updated with the String REPLACE. so i cant use functions within the function exec_UPDATEquery().
(issue imported from #M545)
Updated by Karsten Dambekalns almost 19 years ago
There is a new parameter now, allowing you to skip field from being quoted/escaped
Actions