From 964ea23fa025c9181c8d0fa8941517e91c594612 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 27 Jan 2014 09:17:36 -0500 Subject: [PATCH] Unused parameter Signed-off-by: Marc Delisle --- libraries/DatabaseInterface.class.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/DatabaseInterface.class.php b/libraries/DatabaseInterface.class.php index 5a74e75898..1dc034747c 100644 --- a/libraries/DatabaseInterface.class.php +++ b/libraries/DatabaseInterface.class.php @@ -1927,11 +1927,10 @@ class PMA_DatabaseInterface * @param string $db db name * @param string $which PROCEDURE | FUNCTION | EVENT | VIEW * @param string $name the procedure|function|event|view name - * @param resource $link mysql link * * @return string the definition */ - public function getDefinition($db, $which, $name, $link = null) + public function getDefinition($db, $which, $name) { $returned_field = array( 'PROCEDURE' => 'Create Procedure',