From 346353153d6dff233bf01829ea7e1e73ed6aa22e Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sun, 19 Feb 2017 14:32:01 +0100 Subject: [PATCH] Unindent --- adminer/include/editing.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/adminer/include/editing.inc.php b/adminer/include/editing.inc.php index 51569303..715d7f3e 100644 --- a/adminer/include/editing.inc.php +++ b/adminer/include/editing.inc.php @@ -431,9 +431,9 @@ function create_routine($routine, $row) { } /** Remove current user definer from SQL command - * @param string - * @return string - */ +* @param string +* @return string +*/ function remove_definer($query) { return preg_replace('~^([A-Z =]+) DEFINER=`' . preg_replace('~@(.*)~', '`@`(%|\\1)', logged_user()) . '`~', '\\1', $query); //! proper escaping of user }