diff --git a/lib/profileblock.php b/lib/profileblock.php index 1162b78422..eb19a1a9aa 100644 --- a/lib/profileblock.php +++ b/lib/profileblock.php @@ -127,6 +127,7 @@ abstract class ProfileBlock extends Widget if (!empty($homepage)) { $this->out->element('a', array('href' => $homepage, + 'rel' => 'me', 'class' => 'profile_block_homepage'), $homepage); } diff --git a/plugins/RegisterThrottle/RegisterThrottlePlugin.php b/plugins/RegisterThrottle/RegisterThrottlePlugin.php index 7ad7809bac..1e686bd62b 100644 --- a/plugins/RegisterThrottle/RegisterThrottlePlugin.php +++ b/plugins/RegisterThrottle/RegisterThrottlePlugin.php @@ -223,6 +223,7 @@ class RegisterThrottlePlugin extends Plugin private function _getIpAddress() { $keys = array('HTTP_X_FORWARDED_FOR', + 'HTTP_X_CLIENT', 'CLIENT-IP', 'REMOTE_ADDR');