Fix edit by long non-utf8 string (thanks Robert Vlach)

This commit is contained in:
Jakub Vrana
2014-06-26 14:36:47 +02:00
parent 8bd3dca2f7
commit 7e3f2d9b1d
4 changed files with 17 additions and 6 deletions

View File

@@ -360,7 +360,8 @@ if (!$columns && support("table")) {
$unique_idf = "";
foreach ($unique_array as $key => $val) {
if (($jush == "sql" || $jush == "pgsql") && strlen($val) > 64) {
$key = "MD5(" . (strpos($key, '(') ? $key : idf_escape($key)) . ")"; //! columns looking like functions
$key = (strpos($key, '(') ? $key : idf_escape($key)); //! columns looking like functions
$key = "MD5(" . ($jush == 'sql' && preg_match("~^utf8_~", $fields[$key]["collation"]) ? $key : "CONVERT($key USING " . charset($connection) . ")") . ")";
$val = md5($val);
}
$unique_idf .= "&" . ($val !== null ? urlencode("where[" . bracket_escape($key) . "]") . "=" . urlencode($val) : "null%5B%5D=" . urlencode($key));