Commit 8f733385 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#719 - Bachslashes were removed from filter rules.

parent e1bf06f3
......@@ -160,11 +160,11 @@ class tform {
foreach($this->formDef['tabs'][$tab]['fields'] as $key => $field) {
switch ($field['datatype']) {
case 'VARCHAR':
$new_record[$key] = stripslashes($record[$key]);
$new_record[$key] = $record[$key];
break;
case 'TEXT':
$new_record[$key] = stripslashes($record[$key]);
$new_record[$key] = $record[$key];
break;
case 'DATE':
......@@ -186,7 +186,7 @@ class tform {
break;
default:
$new_record[$key] = stripslashes($record[$key]);
$new_record[$key] = $record[$key];
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment