Skip to content

Commit 2f828ab

Browse files
committed
style fix
1 parent 19d5ba2 commit 2f828ab

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

inc/common.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -794,14 +794,15 @@ function checkwordblock($text = '')
794794
* The 'trustedproxy' setting must not allow any IP, otherwise the X-Forwarded-For
795795
* may be spoofed by the client.
796796
*
797-
* @author Zebra North <[email protected]>
798-
*
799-
* @param bool $single If set only a single IP is returned.
797+
* @param bool $single If set only a single IP is returned.
800798
*
801799
* @return string Returns an IP address if 'single' is true, or a comma-separated list
802800
* of IP addresses otherwise.
801+
* @author Zebra North <[email protected]>
802+
*
803803
*/
804-
function clientIP($single = false) {
804+
function clientIP($single = false)
805+
{
805806
// Return the first IP in single mode, or all the IPs.
806807
return $single ? Ip::clientIp() : join(',', Ip::clientIps());
807808
}

0 commit comments

Comments
 (0)