diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2011-06-27 23:03:31 +0200 | 
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2011-06-27 23:03:31 +0200 | 
| commit | 90b6e65b1193b780c9c363fee3b1e92a5d0fba30 (patch) | |
| tree | dfa326e2313172d151f4a1b07fd297d0f129c875 /www/index.php | |
| parent | 3d11286cbcc3cb35efe11f6e4a4ef5ac81620bda (diff) | |
| download | semanticscuttle-90b6e65b1193b780c9c363fee3b1e92a5d0fba30.tar.gz semanticscuttle-90b6e65b1193b780c9c363fee3b1e92a5d0fba30.tar.bz2 | |
escape feed links properly and fix some bugs in the feed link parameters
Diffstat (limited to 'www/index.php')
| -rw-r--r-- | www/index.php | 16 | 
1 files changed, 12 insertions, 4 deletions
| diff --git a/www/index.php b/www/index.php index f270f73..7fbb84c 100644 --- a/www/index.php +++ b/www/index.php @@ -42,17 +42,25 @@ if (GET_ACTION == "logout") {  // Header variables  $tplVars['loadjs'] = true;  $tplVars['rsschannels'] = array( -array(sprintf(T_('%s: Recent bookmarks'), htmlspecialchars($sitename)), createURL('rss').'?sort='.getSortOrder()) +    array( +        sprintf(T_('%s: Recent bookmarks'), $sitename), +        createURL('rss') . '?sort=' . getSortOrder() +    )  );  if ($userservice->isLoggedOn()) { -    $currentUsername = $currentUser->getUsername();      if ($userservice->isPrivateKeyValid($currentUser->getPrivateKey())) { +        $currentUsername = $currentUser->getUsername();          array_push(              $tplVars['rsschannels'],              array( -                filter(sprintf(T_('%s: Recent bookmarks (+private) %s'), $sitename, $currentUsername)), -                createURL('rss', filter($currentUsername, 'url') . '?sort='.getSortOrder().'&privateKey='.$currentUser->getPrivateKey()) +                sprintf( +                    T_('%s: Recent bookmarks (+private %s)'), +                    $sitename, $currentUsername +                ), +                createURL('rss') +                . '?sort=' . getSortOrder() +                . '&privateKey=' . $currentUser->getPrivateKey()              )          );      } | 
