From e8a80d6900070fd8d98569c3bf4c57ef46b13989 Mon Sep 17 00:00:00 2001 From: mrpete Date: Thu, 7 Dec 2006 12:49:18 +0000 Subject: [PATCH] Bugfix #3558 - typo made cats disappear --- download.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/download.php b/download.php index 42feb3eb7..60d9bd86d 100644 --- a/download.php +++ b/download.php @@ -11,9 +11,9 @@ | GNU General Public License (http://gnu.org). | | $Source: /cvs_backup/e107_0.8/download.php,v $ -| $Revision: 1.1.1.1 $ - with modifications -| $Date: 2006-12-02 04:33:03 $ -| $Author: mcfly_e107 $ +| $Revision: 1.2 $ - with modifications +| $Date: 2006-12-07 12:48:42 $ +| $Author: mrpete $ | | Modifications by steved: | 1. Can display sub-categories which contain sub-sub categories and files @@ -679,7 +679,7 @@ function parse_download_cat_child_table($row, $subList) $DOWNLOAD_CAT_SUB_NEW_ICON = $new; $dcatname=$tp->toHTML($row['download_category_name'],FALSE,"emotes_off, no_make_clickable"); $DOWNLOAD_CAT_SUB_NAME = ($row['d_count'] ? "".$dcatname."" : $dcatname); - $DOWNLOAD_CAT_SUB_NAME_LINKED = "".$$dcatname.""; + $DOWNLOAD_CAT_SUB_NAME_LINKED = "".$dcatname.""; $DOWNLOAD_CAT_SUB_DESCRIPTION = $tp->toHTML($row['download_category_description']); $DOWNLOAD_CAT_SUB_COUNT = ($row['d_subcount'] ? $row['d_subcount'] : $row['d_count']); $DOWNLOAD_CAT_SUB_SIZE = parsesize(($row['d_subsize'] ? $row['d_subsize'] : $row['d_size']));