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:
@@ -8,6 +8,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
|
|||||||
3.3.9.0 (not yet released)
|
3.3.9.0 (not yet released)
|
||||||
- bug [doc] Fix references to MySQL doc
|
- bug [doc] Fix references to MySQL doc
|
||||||
- patch #3101490 Default function for TIMESTAMP, thanks to jirand - jirand
|
- 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)
|
3.3.8.0 (2010-10-25)
|
||||||
- bug #3059311 [import] BIGINT field type added to table analysis
|
- bug #3059311 [import] BIGINT field type added to table analysis
|
||||||
|
@@ -61,6 +61,7 @@ function PMA_escapeJsString($string)
|
|||||||
"\000" => '',
|
"\000" => '',
|
||||||
'\\' => '\\\\',
|
'\\' => '\\\\',
|
||||||
'\'' => '\\\'',
|
'\'' => '\\\'',
|
||||||
|
'"' => '\"',
|
||||||
"\n" => '\n',
|
"\n" => '\n',
|
||||||
"\r" => '\r')));
|
"\r" => '\r')));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user