From: Hans-Emil Skogh Date: Mon, 23 Jan 2012 20:34:03 +0000 (+0100) Subject: Enabled clicking on the entire row of an app in list-view. X-Git-Tag: 0.1~1063^2~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=1cb46ccc80b2c2aaa9bb41833ff28a887d84b9ff;p=fdroidserver.git Enabled clicking on the entire row of an app in list-view. --- diff --git a/wp-fdroid/wp-fdroid.php b/wp-fdroid/wp-fdroid.php index 5efb416f..80e9dad6 100644 --- a/wp-fdroid/wp-fdroid.php +++ b/wp-fdroid/wp-fdroid.php @@ -590,21 +590,20 @@ class FDOutList function outputEntry($query_vars, $appinfo) { $out=""; $out.="
\n"; + $out.=''; $out.='
'; - $out.='
'; + $out.='
'; $out.='
'; - $out.='

Details...'; - $out.="

"; + $out.='

Details...

'; $out.="
\n"; - $out.='

'.$appinfo['name'].""; + $out.='

'.$appinfo['name'].""; $out.="
".$appinfo['summary']."

\n"; $out.="
\n"; + $out.=''; return $out; }