X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=plugins%2Fadministrator%2Fauth.php;h=f82f3edb5c81bc12fd484b3816098906edee5222;hp=aab2196d774d52ac3754da507506f6363473d344;hb=786a9741cdff427db9898ce60ab940784240479c;hpb=0bde8324cf275fd572ccf0ca66c2ddb98ad62798 diff --git a/plugins/administrator/auth.php b/plugins/administrator/auth.php index aab2196d..f82f3edb 100644 --- a/plugins/administrator/auth.php +++ b/plugins/administrator/auth.php @@ -1,23 +1,65 @@ \ No newline at end of file +/** + * Removes whitespace from array values + * @param string $value array value that has to be trimmed + * @param string $key array key + * @since 1.5.1 and 1.4.5 + * @access private + */ +function adm_array_trim(&$value,$key) { + $value=trim($value); +}