• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Default category: Location bug

DragonByte Tech

New Member
AMS Premium
CAS Premium
EMS Early Adopter
IMS Premium
GS Premium
KBS Premium
LD Premium
RMS Premium
SC Premium
UBS Premium
TS Premium
RMS Version
2.3.6
XenForo Version
2.3.13
PHP Version
8.3.33
Database & Version
11.4.13-MariaDB
Are there any errors being throw?
No
By default, a fresh install adds a category with allow_location = 0 but require_location = 1. When checking the category flag, only require_location is checked:
PHP:
            if (
                !$item->location
                && $this->category->require_location
            )
            {
                $errors[] = \XF::phraseDeferred('xa_rms_please_set_location');
            }

While it's unlikely someone would just push the system live with no alternations, and saving the category with no changes does correct the require_location flag, probably warrants a correction :D
 
Back
Top