aboutsummaryrefslogtreecommitdiffstats
path: root/include/category_subcats.inc.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2006-04-08 19:42:11 +0000
committerrvelices <rv-github@modusoptimus.com>2006-04-08 19:42:11 +0000
commit86a90feddf8a9f6918bac25c52f31f1f5d6e17c7 (patch)
tree2c631d2c10db4f619737fe75841243bebcaf6f2f /include/category_subcats.inc.php
parenta892e6abf95a23219d76971890011646f7efeef4 (diff)
merge -r1134 from branches/branch-1_6 into trunk
git-svn-id: http://piwigo.org/svn/trunk@1135 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/category_subcats.inc.php')
-rw-r--r--include/category_subcats.inc.php15
1 files changed, 8 insertions, 7 deletions
diff --git a/include/category_subcats.inc.php b/include/category_subcats.inc.php
index f8eb27f9c..08c883d78 100644
--- a/include/category_subcats.inc.php
+++ b/include/category_subcats.inc.php
@@ -132,7 +132,7 @@ SELECT id, path, tn_ext
$thumbnail_src_of[$row['id']] =
get_thumbnail_src($row['path'], @$row['tn_ext']);
}
-
+
if ($conf['subcatify'])
{
$template->set_filenames(
@@ -142,7 +142,7 @@ SELECT id, path, tn_ext
);
$template->assign_block_vars('categories', array());
-
+
foreach ($categories as $category)
{
$template->assign_block_vars(
@@ -152,7 +152,7 @@ SELECT id, path, tn_ext
'ALT' => $category['name'],
'TITLE' => $lang['hint_category'],
'ICON' => get_icon(@$category['date_last']),
-
+
'URL' => make_index_url(
array(
'category' => $category['category'],
@@ -165,7 +165,7 @@ SELECT id, path, tn_ext
)
);
}
-
+
$template->assign_var_from_handle('CATEGORIES', 'mainpage_categories');
}
else
@@ -175,7 +175,7 @@ SELECT id, path, tn_ext
$template->assign_block_vars('thumbnails.line', array());
// current row displayed
$row_number = 0;
-
+
foreach ($categories as $category)
{
$template->assign_block_vars(
@@ -185,10 +185,11 @@ SELECT id, path, tn_ext
'IMAGE_ALT' => $category['name'],
'IMAGE_TITLE' => $lang['hint_category'],
'IMAGE_TS' => get_icon(@$category['date_last']),
-
+
'U_IMG_LINK' => make_index_url(
array(
'category' => $category['category'],
+ 'cat_name' => $category['name'],
)
),
'CLASS' => 'thumbCat',
@@ -201,7 +202,7 @@ SELECT id, path, tn_ext
'NAME' => $category['name']
)
);
-
+
// create a new line ?
if (++$row_number == $user['nb_image_line'])
{