Quick Search:

Mode

Context

Displaying 3 lines of context. None | Less | More | Full

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

299
 
345
 
345
 
category_tree.php
_> 11 <?php
  22 /*
<> 3 -  $Id: category_tree.php 299 2005-11-30 20:51:03Z hpdl $
   3+  $Id: category_tree.php 345 2005-12-10 10:58:35Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
     
 !
3737     function osC_CategoryTree($load_from_database = true) {
  3838       global $osC_Database, $osC_Cache;
  3939 
<> 40 -      if (SHOW_COUNTS == 'true') {
   40+      if (SERVICES_CATEGORY_PATH_CALCULATE_PRODUCT_COUNT == '1') {
4141         $this->show_category_product_count = true;
  4242       }
  4343 
     
 !
9797       $this->cpath_array = array();
  9898       $this->cpath_start_string = '';
  9999       $this->cpath_end_string = '';
<> 100 -      $this->show_category_product_count = (SHOW_COUNTS == 'true') ? true : false;
   100+      $this->show_category_product_count = (SERVICES_CATEGORY_PATH_CALCULATE_PRODUCT_COUNT == '1') ? true : false;
<_ 101101       $this->category_product_count_start_string = '&nbsp;(';
  102102       $this->category_product_count_end_string = ')';
  103103     }