summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2008-04-27 14:35:05 +0200
committerAndreas Unterkircher <unki@netshadow.at>2008-04-27 14:35:05 +0200
commitb3caf0ff75d38cd20cfbdaa8a661cd157845871d (patch)
treedf5eba3fd1f01481a6c357a2dbc10233c6a1c093 /phpfspot.class.php
parent7e3758cb44cc14bb68c4724849e923741dc9982b (diff)
issue15, for now disable the show_tags-checks because it blocks the get_random_tag_photo() function
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index 97deb96..943c57a 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -2620,12 +2620,12 @@ class PHPFSPOT {
pt.tag_id LIKE '". $tagidx ."'
";
- if(isset($this->cfg->show_tags) && !empty($this->cfg->show_tags)) {
+ /*if(isset($this->cfg->show_tags) && !empty($this->cfg->show_tags)) {
$query_str.= "
AND
t.name IN ('".implode("','",$this->cfg->show_tags)."')
";
- }
+ }*/
$result = $this->db->db_query($query_str);