Skip to content

Commit

Permalink
Fixed string concatenation formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fevangelou committed Aug 11, 2015
1 parent 424b495 commit 836684e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/system/remember/remember.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function onAfterInitialise()
// Check for a cookie if user is not logged in
if (JFactory::getUser()->get('guest'))
{
$cookieName = 'JRememberMe_'.JUserHelper::getShortHashedUserAgent();
$cookieName = 'JRememberMe_' . JUserHelper::getShortHashedUserAgent();

// Check for the cookie
if ($this->app->input->cookie->get($cookieName))
Expand All @@ -77,7 +77,7 @@ public function onUserLogout($user, $options)
return true;
}

$cookieName = 'JRememberMe_'.JUserHelper::getShortHashedUserAgent();
$cookieName = 'JRememberMe_' . JUserHelper::getShortHashedUserAgent();

// Check for the cookie
if ($this->app->input->cookie->get($cookieName))
Expand Down

0 comments on commit 836684e

Please sign in to comment.