bug #3103853 [js] Double quotes were not escaped in generated js; I think this only applies to 3.3.x

This commit is contained in:
Marc Delisle
2010-11-06 07:51:06 -04:00
parent 81a338db80
commit 5f4604c9bb
2 changed files with 2 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
3.3.9.0 (not yet released)
- bug [doc] Fix references to MySQL doc
- patch #3101490 Default function for TIMESTAMP, thanks to jirand - jirand
- bug #3103853 [js] Double quotes were not escaped in generated js
3.3.8.0 (2010-10-25)
- bug #3059311 [import] BIGINT field type added to table analysis

View File

@@ -61,6 +61,7 @@ function PMA_escapeJsString($string)
"\000" => '',
'\\' => '\\\\',
'\'' => '\\\'',
'"' => '\"',
"\n" => '\n',
"\r" => '\r')));
}