From 531dac478430b67ec0d03439fc67c0039ba84dd3 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 26 Aug 2014 12:44:55 -0400 Subject: [PATCH] Fix coding style Signed-off-by: Marc Delisle --- libraries/url_generating.lib.php | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/libraries/url_generating.lib.php b/libraries/url_generating.lib.php index 03972b6f03..475e673970 100644 --- a/libraries/url_generating.lib.php +++ b/libraries/url_generating.lib.php @@ -167,19 +167,25 @@ function PMA_getHiddenFields($values, $pre = '') * // script.php?server=1&lang=en * * - * @param mixed assoc. array with url params or optional string with database name - * if first param is an array there is also an ? prefixed to the url + * @param mixed $params_or_db Contains either an associative array with url + * params or optional string with database name; + * if first param is an array there is also an ? + * prefixed to the url * - * @param string - if first param is array: 'html' to use htmlspecialchars() - * on the resulting URL (for a normal URL displayed in HTML) - * or something else to avoid using htmlspecialchars() (for - * a URL sent via a header); if not set,'html' is assumed - * - if first param is not array: optional table name + * @param string $encode_or_table If first param is array: 'html' to use + * htmlspecialchars() on the resulting URL + * (for a normal URL displayed in HTML) + * or something else to avoid using + * htmlspecialchars() (for a URL sent via a + * header); if not set,'html' is assumed; + * If first param is not array: + * optional table name * - * @param string - if first param is array: optional character to - * use instead of '?' - * - if first param is not array: optional character to use - * instead of '&' for dividing URL parameters + * @param string $divider If first param is array: optional character + * to use instead of '?'; + * If first param is not array: optional + * character to use instead of '&' for + * dividing URL parameters * * @return string string with URL parameters * @access public