From e333345722f7a9241bc4e4ec2588eba5e075deff Mon Sep 17 00:00:00 2001 From: Garret Buell Date: Sun, 31 Aug 2008 19:34:01 -0400 Subject: [PATCH] Tags_without_fancy Change common_tag_link to format the tag link based on the setting of $config['site']['fancy'] darcs-hash:20080831233401-e3c0d-4e0e43f5a53a6659c49d65a2b1f2a47c5cdec228.gz --- lib/util.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 4af0e6fcd9..93a0711f36 100644 --- a/lib/util.php +++ b/lib/util.php @@ -694,7 +694,11 @@ function common_render_content($text, $notice) { } function common_tag_link($tag) { - return ''; + if(common_config('site', 'fancy')) { + return ''; + } else { + return ''; + } } function common_at_link($sender_id, $nickname) {