now really (forgot to return the unquoted string)

This commit is contained in:
Sebastian Mendel
2006-08-02 12:18:09 +00:00
parent 53ddec4168
commit 39c52ac207

View File

@@ -750,6 +750,7 @@ if (!defined('PMA_MINIMUM_COMMON')) {
$unquoted_string = substr($quoted_string, 1, -1);
// replace escaped quotes
$unquoted_string = str_replace($quote . $quote, $quote, $unquoted_string);
return $unquoted_string;
}
}