The branch, master has been updated via 9dd32a98bf3524eb59292c257f843ea66c7937ca (commit) from 5cbb8896045678439cf4d51a68df8d1047189fcb (commit)
- Log ----------------------------------------------------------------- commit 9dd32a98bf3524eb59292c257f843ea66c7937ca Author: Rouslan Placella rouslan@placella.com Date: Sun Jan 15 17:04:10 2012 +0000
Fixed bug 3472023 - Displaying procedure output
-----------------------------------------------------------------------
Summary of changes: libraries/rte/rte_routines.lib.php | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/libraries/rte/rte_routines.lib.php b/libraries/rte/rte_routines.lib.php index 80f04a4..01652c2 100644 --- a/libraries/rte/rte_routines.lib.php +++ b/libraries/rte/rte_routines.lib.php @@ -1196,6 +1196,7 @@ function PMA_RTN_handleExecute() if (substr($query, 0, 6) == 'SELECT') { $result = $resource; } else if (substr($query, 0, 4) == 'CALL') { + $result = $resource ? $resource : $result; $affected = PMA_DBI_affected_rows() - PMA_DBI_num_rows($resource); } }
hooks/post-receive