Note to Phil... and anyone else who might be
using EQ's SubCats Mod after it is released:
This patch will conflict with the SubCats Mod... in that clicking any content link nexted under a SubCategory title in the sidebar menu... will throw a "404" error and give you the
Requested contents could not be found. Please go back or use the search feature. message in the main content container.
I was/am using the second patch string Phil provided in blue (above) and made one small change to it, as shown in red:
FROM:
case (!empty($articleSEF) && false === strpos($articleSEF,l('paginator')) && (!is_numeric($articleCatID) || $articleCatID!=$categoryID)):
TO:
case (!empty($articleSEF) && false === strpos($articleSEF,l('paginator')) && (!is_numeric($articleCatID) && $articleCatID!=$categoryID)):
With my limited PHP knowledge... I believe the 2 vertical bars serve as "OR" in the string... while the && serves as "AND". If this is the case, we're now making the string say... and if the article's category ID is not the category ID...
Phil... we'd appreciate your interpretation of this change... does it make the patch ineffective or does it make it co-exist?
