summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorspocky <spocky@ampache>2008-03-17 18:52:04 +0000
committerspocky <spocky@ampache>2008-03-17 18:52:04 +0000
commit491e1f9e82a484663e4419b4247efc382873e326 (patch)
tree253818cb3a75930f55208a336e5f9bb2ac4b443a /templates
parent126dc77919b787e60c1220d51db7fbfeb05f08e7 (diff)
downloadampache-491e1f9e82a484663e4419b4247efc382873e326.tar.gz
ampache-491e1f9e82a484663e4419b4247efc382873e326.tar.bz2
ampache-491e1f9e82a484663e4419b4247efc382873e326.zip
Minor changes to shoutbox
Fixed greysme tables font-size on ff3
Diffstat (limited to 'templates')
-rw-r--r--templates/show_shoutbox.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_shoutbox.inc.php b/templates/show_shoutbox.inc.php
index aea1d30a..9d99620e 100644
--- a/templates/show_shoutbox.inc.php
+++ b/templates/show_shoutbox.inc.php
@@ -22,7 +22,7 @@
<?php show_box_top(_('Shoutbox')); ?>
<div id="shoutbox">
<?php
- $rowparity="shouteven";
+ $rowparity="even";
foreach ($shouts as $shout_id) {
$shout = new shoutBox($shout_id);
$object = shoutBox::get_object($shout->object_type,$shout->object_id);
@@ -30,7 +30,7 @@
$client = new User($shout->user);
$client->format();
- $rowparity = ($rowparity=="shouteven") ? "shoutodd" : "shouteven";
+ $rowparity = ($rowparity=="even") ? "odd" : "even";
?>
<div class="shout <?php echo($rowparity) ?>">
<?php echo $shout->get_image(); ?>