summaryrefslogtreecommitdiffstats
path: root/utility
diff options
context:
space:
mode:
authorlsmooth <ls@lsmooth.de>2013-06-09 20:03:05 +0200
committerlsmooth <ls@lsmooth.de>2013-06-09 20:03:05 +0200
commit9bee16db1f148f583582b78149bd016626986ef8 (patch)
tree25a07831852c497a03df587eaa4623ca5e7987e4 /utility
parent6a4be5407f423df794c8140c6826609a1635c5e8 (diff)
modify Fetch to pass on getFavicon parameter
Diffstat (limited to 'utility')
-rw-r--r--utility/fetcher.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/utility/fetcher.php b/utility/fetcher.php
index c834de5e4..8c3bc03e9 100644
--- a/utility/fetcher.php
+++ b/utility/fetcher.php
@@ -40,10 +40,10 @@ class Fetcher {
}
- public function fetch($url){
+ public function fetch($url, $getFavicon=true){
foreach($this->fetchers as $fetcher){
if($fetcher->canHandle($url)){
- return $fetcher->fetch($url);
+ return $fetcher->fetch($url, $getFavicon);
}
}
}