summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-06-09 07:22:28 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-06-09 07:22:28 +0000
commit7ca20d2b9cd665125a20a3d480694db0fde0afdc (patch)
tree8c17b001ed96edccb44d51dfc95dabb7ae2b93a9 /phpfspot.class.php
parenta2d560dc04f13fbd08e9ce9a6f254103555e69ac (diff)
tag ignore list
git-svn-id: file:///var/lib/svn/phpfspot/trunk@72 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index 3f7a728..f405626 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -57,6 +57,10 @@ class PHPFSPOT {
$tag_id = $row['id'];
$tag_name = $row['name'];
+ /* check if config requests to ignore this tag */
+ if(in_array($row['name'], $this->cfg->hide_tags))
+ continue;
+
$this->tags[$tag_id] = $tag_name;
$this->avail_tags[$count] = $tag_id;