error when saving an inline-edited row

This commit is contained in:
Marc Delisle
2010-10-14 13:06:42 -04:00
parent 2ecf4b3641
commit 6206cd30f4

View File

@@ -7,6 +7,16 @@
* *
*/ */
/**
* decode a string URL_encoded
*
* @param string str
* @return string the URL-decoded string
*/
function PMA_urldecode(str) {
return decodeURIComponent(str.replace(/\+/g, '%20'));
}
/** /**
* Get the field name for the current field. Required to construct the query * Get the field name for the current field. Required to construct the query
* for inline editing * for inline editing
@@ -576,7 +586,7 @@ $(document).ready(function() {
}) })
//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$/, '');
sql_query += ' WHERE ' + where_clause; sql_query += ' WHERE ' + PMA_urldecode(where_clause);
/** /**
* @var rel_fields_list String, url encoded representation of {@link relations_fields} * @var rel_fields_list String, url encoded representation of {@link relations_fields}