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
While it's unlikely someone would just push the system live with no alternations, and saving the category with no changes does correct the
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