From: Ciaran Gultnieks Date: Wed, 27 Nov 2013 10:47:12 +0000 (+0000) Subject: Link web repo browser antifeatures to detailed descriptions X-Git-Tag: 0.1~138 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=3568a51ac06b644ac8447a7a31d9903cb749fb51;p=fdroidserver.git Link web repo browser antifeatures to detailed descriptions --- diff --git a/wp-fdroid/wp-fdroid.php b/wp-fdroid/wp-fdroid.php index c3dd56bf..5db6a52f 100644 --- a/wp-fdroid/wp-fdroid.php +++ b/wp-fdroid/wp-fdroid.php @@ -249,9 +249,9 @@ class FDroid if(isset($antifeatures)) { $antifeaturesArray = explode(',',$antifeatures); foreach($antifeaturesArray as $antifeature) { - $antifeatureDesctiption = $this->get_antifeature_description($antifeature); - $out.='

'.$antifeatureDesctiption['name'].'
'; - $out.=$antifeatureDesctiption['description'].'

'; + $antifeatureDescription = $this->get_antifeature_description($antifeature); + $out.='

'.$antifeatureDescription['name'].'
'; + $out.=$antifeatureDescription['description'].' more...

'; } }