Subversion Repositories SmartDukaan

Rev

Rev 10188 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10188 Rev 10189
Line 413... Line 413...
413
                props.put("displayAccessories", "FALSE" );
413
                props.put("displayAccessories", "FALSE" );
414
                displayAccessories = false;
414
                displayAccessories = false;
415
            }  
415
            }  
416
           
416
           
417
            props.put("categoryName", categoryName);
417
            props.put("categoryName", categoryName);
-
 
418
            props.put("hasAccessories", parentCategory.isComparable() ? "TRUE":"FALSE");
418
            props.put("isComparable", parentCategory.isComparable() ? "true":"false");
419
            props.put("isComparable", parentCategory.isComparable() ? "true":"false");
419
            props.put("compareCategory", parentCategory.isComparable() ? parentCategory.getLabel() : categoryName);
420
            props.put("compareCategory", parentCategory.isComparable() ? parentCategory.getLabel() : categoryName);
420
            props.put("categoryUrl", categoryName.replaceAll(SPACE, "-").toLowerCase() + "/" + category.getID());
421
            props.put("categoryUrl", categoryName.replaceAll(SPACE, "-").toLowerCase() + "/" + category.getID());
421
            String categoryUrl = categoryName.replaceAll(SPACE, "-").toLowerCase() + "/" + category.getID();
422
            String categoryUrl = categoryName.replaceAll(SPACE, "-").toLowerCase() + "/" + category.getID();
422
           
423