mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 16:35:02 +02:00
Expressions in the dataview-rows are now evaluated correctly
This commit is contained in:
@ -350,7 +350,7 @@
|
||||
if (typeof part == "string")
|
||||
{
|
||||
// Escape all "'" and "\" chars and add the string to the parts array
|
||||
parts.push("'" + part.replace(/'/g, "\\'").replace(/\\/g, "\\\\") + "'");
|
||||
parts.push("'" + part.replace(/\\/g, "\\\\").replace(/'/g, "\\'") + "'");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user