You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From email conversation with Juancarlos on escaping chars in old form:
Valerio, just FYI, I'm using
use URI::Escape;
And before adding a value to postgres, I'm
$value = uri_unescape($value);
as well as the previous
if ($value =~ m/'/) { $value =~ s/'/''/g; }
to escape singlequotes
We need to implement a similar function for the new GC tool
The text was updated successfully, but these errors were encountered:
From email conversation with Juancarlos on escaping chars in old form:
Valerio, just FYI, I'm using
use URI::Escape;
And before adding a value to postgres, I'm
$value = uri_unescape($value);
as well as the previous
if ($value =~ m/'/) { $value =~ s/'/''/g; }
to escape singlequotes
We need to implement a similar function for the new GC tool
The text was updated successfully, but these errors were encountered: