No Category Namespace DB Error
When I have not assigned the Category space to a forum, I get a database error when trying to view any non-Island, non-Special wiki pages. (This applies only to Premium users - Standard doesn't have the Category space to begin with).
Fixed in the current ZIP. In
vault/special_class_postbit.php, find:
Code:
($this->forum['vault_type'] > 0 AND $this->thread['namespaceid'] != SPECIAL_SPACE)
Replace with:
Code:
(CATEGORY_SPACE AND $this->forum['vault_type'] > 0 AND $this->thread['namespaceid'] != SPECIAL_SPACE)