summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-06-12 04:05:37 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-06-12 04:05:37 +0000
commit5ece5fdc55596b08577f446ff9432026c798da57 (patch)
tree0eb1d4434f12f77b7b56fc8e1548b828f68dde73 /phpfspot.class.php
parenteaf7260e0a6318f25cc6fcb18661ca04acd46005 (diff)
tag style changes
git-svn-id: file:///var/lib/svn/phpfspot/trunk@86 fa6a889d-dae6-447d-9e79-4ba9a3039384
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 42d3075..c1bf643 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -150,7 +150,7 @@ class PHPFSPOT {
continue;
// return all available (= not selected) tags
- print "<a href=\"javascript:Tags('add', ". $tag .");\">". $this->tags[$tag] ."</a>&nbsp;";
+ print "<a href=\"javascript:Tags('add', ". $tag .");\" class=\"tag\">". $this->tags[$tag] ."</a>&nbsp;";
}
@@ -162,7 +162,7 @@ class PHPFSPOT {
{
// return all selected tags
if(isset($_SESSION['selected_tags']) && in_array($tag, $_SESSION['selected_tags'])) {
- print "<a href=\"javascript:Tags('del', ". $tag .");\">". $this->tags[$tag] ."</a>&nbsp;";
+ print "<a href=\"javascript:Tags('del', ". $tag .");\" class=\"tag\">". $this->tags[$tag] ."</a>&nbsp;";
}
}