瀏覽代碼

Cleanup: remove unused variables

Signed-off-by: VirtualTam <virtualtam@flibidi.net>
VirtualTam 7 年之前
父節點
當前提交
724f1e3229
共有 2 個文件被更改,包括 1 次插入5 次删除
  1. 0 4
      application/CachedPage.php
  2. 1 1
      index.php

+ 0 - 4
application/CachedPage.php

@@ -7,9 +7,6 @@ class CachedPage
     // Directory containing page caches
     private $cacheDir;
 
-    // Full URL of the page to cache -typically the value returned by pageUrl()
-    private $url;
-
     // Should this URL be cached (boolean)?
     private $shouldBeCached;
 
@@ -27,7 +24,6 @@ class CachedPage
     {
         // TODO: check write access to the cache directory
         $this->cacheDir = $cacheDir;
-        $this->url = $url;
         $this->filename = $this->cacheDir.'/'.sha1($url).'.cache';
         $this->shouldBeCached = $shouldBeCached;
     }

+ 1 - 1
index.php

@@ -617,7 +617,7 @@ function showDailyRSS($conf) {
         $tpl->assign('links', $links);
         $tpl->assign('rssdate', escape($dayDate->format(DateTime::RSS)));
         $tpl->assign('hide_timestamps', $conf->get('privacy.hide_timestamps', false));
-        $html = $tpl->draw('dailyrss', $return_string=true);
+        $html = $tpl->draw('dailyrss', true);
 
         echo $html . PHP_EOL;
     }