summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-08-11 17:24:55 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-08-11 17:24:55 -0400
commit0913349b9db612d57a25472ce4e4d58dbf1f2898 (patch)
tree38e2e1685fdb7c72bea037c564012ec73a65be95 /lib
parent14683ee6f1381004193621d00a4ece3737bc80a4 (diff)
fixes yet another namespace problem
Diffstat (limited to 'lib')
-rw-r--r--lib/utils.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/utils.php b/lib/utils.php
index 618cfc5d0..e67ea21f5 100644
--- a/lib/utils.php
+++ b/lib/utils.php
@@ -53,7 +53,7 @@ class Utils {
$favicon = $spfeed->get_image_url();
if ($favicon !== null) { // use favicon from feed
- if(checkFavicon($favicon))
+ if(self::checkFavicon($favicon))
$feed->setFavicon($favicon);
}
else { // try really hard to find a favicon
@@ -105,7 +105,7 @@ class Utils {
$favicon = htmlspecialchars_decode ( $match[2] );
// test for an url
if (parse_url($favicon,PHP_URL_SCHEME)) {
- if(checkFavicon($favicon))
+ if(self::checkFavicon($favicon))
return $favicon;
}
// test for an absolute path