From 575f70545171f6f5c94214ce88e5b07a1f517810 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 29 Jul 2008 15:47:35 -0400 Subject: [PATCH] if-else instead of ?: darcs-hash:20080729194735-84dde-246582a47d4a384375d153bff0e724c778c4b3af.gz --- actions/tag.php | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/actions/tag.php b/actions/tag.php index 35d841f09d..c0201d1a83 100644 --- a/actions/tag.php +++ b/actions/tag.php @@ -121,13 +121,21 @@ class TagAction extends StreamAction { function show_tag($tag, $weight, $relative) { # XXX: these should probably tune to the size of the site - $cls = ($relative > 0.1) ? 'largest' : - ($relative > 0.05) ? 'verylarge' : - ($relative > 0.02) ? 'large' : - ($relative > 0.01) ? 'medium' : - ($relative > 0.005) ? 'small' : - ($relative > 0.002) ? 'verysmall' : - 'smallest'; + if ($relative > 0.1) { + $cls = 'largest'; + } else if ($relative > 0.05) { + $cls = 'verylarge'; + } else if ($relative > 0.02) { + $cls = 'large'; + } else if ($relative > 0.01) { + $cls = 'medium'; + } else if ($relative > 0.005) { + $cls = 'small'; + } else if ($relative > 0.002) { + $cls = 'verysmall'; + } else { + $cls = 'smallest'; + } common_element('a', array('class' => "$cls weight-$weight relative-$relative", 'href' => common_local_url('tag', array('tag' => $tag))),