issue116, do not show hidden tags in the photo-details box
[phpfspot.git] / phpfspot.class.php
index 0615cff77a5d7742cc29461b42cf2cf4e8c54b13..a279effe0555b3a3dacf316f70d86eb4f7f34bb1 100644 (file)
@@ -1970,8 +1970,11 @@ class PHPFSPOT {
 
       $tags = Array();
 
-      while($row = $this->db->db_fetch_object($result))
+      while($row = $this->db->db_fetch_object($result)) {
+         if(isset($this->cfg->hide_tags) && in_array($row['name'], $this->cfg->hide_tags))
+            continue;
          $tags[$row['id']] = $row['name'];
+      }
 
       return $tags;