diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-06-27 22:31:24 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-06-27 22:31:24 +0200 |
commit | 3d11286cbcc3cb35efe11f6e4a4ef5ac81620bda (patch) | |
tree | 09b4e0acbafa918ccd64cd8d504eece992ba7a89 /www/rss.php | |
parent | 763d394436dc632bf18bff8876af22be9b44e9f4 (diff) | |
download | semanticscuttle-3d11286cbcc3cb35efe11f6e4a4ef5ac81620bda.tar.gz semanticscuttle-3d11286cbcc3cb35efe11f6e4a4ef5ac81620bda.tar.bz2 |
privatekey -> privateKey everywhere
Diffstat (limited to 'www/rss.php')
-rw-r--r-- | www/rss.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/www/rss.php b/www/rss.php index b8f6948..d888726 100644 --- a/www/rss.php +++ b/www/rss.php @@ -64,9 +64,9 @@ if (!isset($rssEntries) || $rssEntries <= 0) { $rssEntries = $maxRssEntries; } -$privatekey = null; -if (isset($_GET['privatekey'])) { - $privatekey = $_GET['privatekey']; +$privateKey = null; +if (isset($_GET['privateKey'])) { + $privateKey = $_GET['privateKey']; } $userid = null; @@ -83,10 +83,10 @@ if ($user && $user != 'all') { } else { if ($userinfo = $userservice->getUserByUsername($user)) { $userid =& $userinfo[$userservice->getFieldName('primary')]; - /* if user is not logged in and has valid privatekey */ + /* if user is not logged in and has valid privateKey */ if (!$userservice->isLoggedOn()) { - if ($privatekey != null) { - if (!$userservice->loginPrivateKey($privatekey)) { + if ($privateKey != null) { + if (!$userservice->loginPrivateKey($privateKey)) { $tplVars['error'] = sprintf(T_('Failed to Autenticate User with username %s using private key'), $user); header('Content-type: text/html; charset=utf-8'); $templateservice->loadTemplate('error.404.tpl', $tplVars); @@ -106,8 +106,8 @@ if ($user && $user != 'all') { } $pagetitle .= ": ". $user; } else { - if ($privatekey != null) { - if (!$userservice->loginPrivateKey($privatekey)) { + if ($privateKey != null) { + if (!$userservice->loginPrivateKey($privateKey)) { $tplVars['error'] = sprintf(T_('Failed to Autenticate User with username %s using private key'), $user); header('Content-type: text/html; charset=utf-8'); $templateservice->loadTemplate('error.404.tpl', $tplVars); |