Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRouslan Placella <rouslan@placella.com>2011-06-16 14:44:06 +0400
committerRouslan Placella <rouslan@placella.com>2011-06-16 14:44:06 +0400
commita8f8d3e7a8ac0f083fd7c2decc1c522c8cc6824b (patch)
tree83f6d654b67a000e79b438396a23848e1f08a779 /db_routines.php
parent4047020d789217d393c597f726bf76e8a01d765c (diff)
Animate the insertion of new routines into the list
Diffstat (limited to 'db_routines.php')
-rw-r--r--db_routines.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_routines.php b/db_routines.php
index 96ae8872bb..32c5d86f8c 100644
--- a/db_routines.php
+++ b/db_routines.php
@@ -309,7 +309,7 @@ if (! empty($_REQUEST['execute_routine']) && ! empty($_REQUEST['routine_name']))
$where = "ROUTINE_SCHEMA='" . PMA_sqlAddslashes($db,true) . "' AND ROUTINE_NAME='" . PMA_sqlAddslashes($_REQUEST['routine_name'],true) . "'";
$routine = PMA_DBI_fetch_single_row("SELECT $columns FROM `INFORMATION_SCHEMA`.`ROUTINES` WHERE $where;");
$extra_data['name'] = htmlspecialchars(strtoupper($_REQUEST['routine_name']));
- $extra_data['new_row'] = PMA_RTN_getRowForRoutinesList($routine);
+ $extra_data['new_row'] = PMA_RTN_getRowForRoutinesList($routine, 0, true);
$extra_data['sql_query'] = $output;
$response = PMA_message::success();
} else {