Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Atul Pratap Singh 2012-07-16 07:11:51 +00:00
commit 77cfa19b6c
2 changed files with 6 additions and 0 deletions

View File

@ -49,6 +49,7 @@ VerboseMultiSubmit, ReplaceHelpImg
- bug #3534979 [interface] Copy Database Ajax feedback vanishes long before copying is done
- bug #3527531 [interface] GC-maxlifetime warning incorrectly displayed
- bug #3526916 [interface] Search fails with JS error when tooltips disabled
- bug #3544366 [interface] Event comments not saved
3.5.2.0 (2012-07-07)
- bug #3521416 [interface] JS error when editing index

View File

@ -575,6 +575,11 @@ function PMA_EVN_getQueryFromRequest()
}
}
}
if (! empty($_REQUEST['item_comment'])) {
$query .= "COMMENT '" . $common_functions->sqlAddslashes(
$_REQUEST['item_comment']
) . "' ";
}
$query .= 'DO ';
if (! empty($_REQUEST['item_definition'])) {
$query .= $_REQUEST['item_definition'];