summaryrefslogtreecommitdiff
path: root/modules/openid
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-10-19 10:19:03 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-10-19 10:19:03 +0000
commitb64adf07c82087816dc5c4b37c13c0ef4d69223c (patch)
tree9bc28ead5e085e252a445098a0038621ae6d1b53 /modules/openid
parentccb0c0a78f6f9e1029f471de67b0095755b91c8c (diff)
downloadbrdo-b64adf07c82087816dc5c4b37c13c0ef4d69223c.tar.gz
brdo-b64adf07c82087816dc5c4b37c13c0ef4d69223c.tar.bz2
#182645 by scor: clean up concatenations to be in line with core coding standards
Diffstat (limited to 'modules/openid')
-rw-r--r--modules/openid/openid.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/openid/openid.inc b/modules/openid/openid.inc
index 8eeaedd55..1eb677341 100644
--- a/modules/openid/openid.inc
+++ b/modules/openid/openid.inc
@@ -41,7 +41,7 @@ function openid_redirect_http($url, $message) {
* Creates a js auto-submit redirect for (for the 2.x protocol)
*/
function openid_redirect($url, $message) {
- $output = '<html><head><title>'.t('OpenID redirect'). "</title></head>\n<body>";
+ $output = '<html><head><title>'. t('OpenID redirect') ."</title></head>\n<body>";
$output .= drupal_get_form('openid_redirect_form', $url, $message);
$output .= '<script type="text/javascript">document.getElementById("openid-redirect-form").submit();</script>';
$output .= "</body></html>\n";
@@ -354,7 +354,7 @@ function _openid_dh_rand($stop) {
}
do {
- $bytes = "\x00" . _openid_get_bytes($nbytes);
+ $bytes = "\x00". _openid_get_bytes($nbytes);
$n = _openid_dh_binary_to_long($bytes);
// Keep looping if this value is in the low duplicated range.
} while (bccomp($n, $duplicate) < 0);