From dae3b7338e60aed79e91ef037b05f58490a273b1 Mon Sep 17 00:00:00 2001 From: gburton Date: Wed, 27 May 2020 15:49:44 +0100 Subject: [PATCH 1/4] Increase Column Width Typo/Oversight --- admin/modules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/modules.php b/admin/modules.php index 7e399d8e4..6ddbf3d21 100644 --- a/admin/modules.php +++ b/admin/modules.php @@ -348,7 +348,7 @@ } if ( (tep_not_null($heading)) && (tep_not_null($contents)) ) { - echo '
'; + echo '
'; $box = new box(); echo $box->infoBox($heading, $contents); echo '
'; From a1365b7cd19a95a84ff7026ac7a326e82c6d9855 Mon Sep 17 00:00:00 2001 From: gburton Date: Wed, 27 May 2020 16:16:39 +0100 Subject: [PATCH 2/4] Return SEO description --- admin/categories.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/categories.php b/admin/categories.php index c567a87e8..ee91f8585 100644 --- a/admin/categories.php +++ b/admin/categories.php @@ -1112,7 +1112,7 @@ function addNewPiForm() { $category_seo_description_string .= '
'; $category_seo_description_string .= ''. tep_image(tep_catalog_href_link('includes/languages/' . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], '', 'SSL'), $languages[$i]['name']) . ''; $category_seo_description_string .= '
'; - $category_seo_description_string .= tep_draw_textarea_field('categories_seo_description[' . $languages[$i]['id'] . ']', 'soft', '80', '10', tep_get_category_seo_keywords($cInfo->categories_id, $languages[$i]['id'])); + $category_seo_description_string .= tep_draw_textarea_field('categories_seo_description[' . $languages[$i]['id'] . ']', 'soft', '80', '10', tep_get_category_seo_description($cInfo->categories_id, $languages[$i]['id'])); $category_seo_description_string .= '
'; $category_seo_keywords_string .= '
'; $category_seo_keywords_string .= '
'; From 4029f9c91f62a128073fa7e5131d824ccdb55713 Mon Sep 17 00:00:00 2001 From: gburton Date: Thu, 28 May 2020 11:39:41 +0100 Subject: [PATCH 3/4] Hook Listener --- includes/modules/product_listing.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/modules/product_listing.php b/includes/modules/product_listing.php index 92293dbaa..c974b4cea 100644 --- a/includes/modules/product_listing.php +++ b/includes/modules/product_listing.php @@ -11,6 +11,8 @@ */ $num_list = (isset($_GET['view']) && ($_GET['view'] == 'all') ) ? 999999 : MAX_DISPLAY_SEARCH_RESULTS; + $num_list = $OSCOM_Hooks->call('siteWide', 'numList'); + $listing_split = new splitPageResults($listing_sql, $num_list, 'p.products_id'); ?> From f4faac5553d41ef85a8b0575fd00d68e44802f62 Mon Sep 17 00:00:00 2001 From: gburton Date: Fri, 29 May 2020 10:13:10 +0100 Subject: [PATCH 4/4] 1.0.6.3 --- includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/version.php b/includes/version.php index 00c058f72..ad580cafe 100644 --- a/includes/version.php +++ b/includes/version.php @@ -1 +1 @@ -1.0.6.2 \ No newline at end of file +1.0.6.3 \ No newline at end of file