Inline edit did not work with strings containing single quotes
This commit is contained in:
@@ -619,7 +619,7 @@ $(document).ready(function() {
|
|||||||
if(value.length == 0) {
|
if(value.length == 0) {
|
||||||
value = 'NULL'
|
value = 'NULL'
|
||||||
}
|
}
|
||||||
sql_query += ' ' + key + "='" + value + "' , ";
|
sql_query += ' ' + key + "='" + value.replace(/'/g, "''") + "' , ";
|
||||||
})
|
})
|
||||||
//Remove the last ',' appended in the above loop
|
//Remove the last ',' appended in the above loop
|
||||||
sql_query = sql_query.replace(/,\s$/, '');
|
sql_query = sql_query.replace(/,\s$/, '');
|
||||||
|
Reference in New Issue
Block a user