Recent content by Xon

  1. X

    Permission Improvements [Paid]

    Xon updated Permission Improvements with a new update entry: 1.3.2 - Bugfix update Read the rest of this update entry...
  2. X

    Passkeys are not deleted when a user

    Modern-ish mysql can be kinda wonky on which is more or less performance for that sort of query. A basic not in like that should get transformed into a similar execution plan as left join is null.
  3. X

    Content Ratings [Paid]

    Xon updated Content Ratings with a new update entry: 2.8.7 - Bugfix update Read the rest of this update entry...
  4. X

    Passkeys are not deleted when a user

    If passkeys are going to be deleted, probably need an XF installer step to cleanup the data. For any users being affected by this bug, this query should clean things up: DELETE FROM xf_passkey WHERE user_id NOT IN (SELECT user_id FROM xf_user)
  5. X

    Passkeys are not deleted when a user

    XF\Service\Passkey\ManagerService::getPasskeyUser() can return null, which will cause internal server errors due to various login methods requiring a user entity. The validate function should be checking that the user exists, or the simple way would be to add ->with('User', true) when fetching...
  6. X

    Report Improvements by Xon

    It shouldn't occur after the upgrade finishes, it just happens briefly in the middle of updates
  7. X

    Report Centre Essentials [Paid]

    Xon updated Report Centre Essentials with a new update entry: 2.14.3 - Performance update Read the rest of this update entry...
  8. X

    Report Improvements by Xon

    Xon updated Report Improvements by Xon with a new update entry: 2.21.3 - Performance update Read the rest of this update entry...
  9. X

    Selectable Logos [Paid]

    Xon updated Selectable Logos with a new update entry: 1.3.0 - Feature update Read the rest of this update entry...
  10. X

    nestable & field-adder do not work together

    The field-adder js isn't compatible with the nestable javascript. This is because field-adder doesn't apply the data-increment-format attribute to the top-level element which is being cloned. This sort of HTML structure is almost valid but data-id isn't updated so sorting doesn't work as...
  11. X

    Warning Improvements by Xon

    @Grumpy Squid does this happen on the stock theme? The member_view template should have a $user set and this template should only be rendered if the user exists
  12. X

    Report Centre Essentials [Paid]

    Xon updated Report Centre Essentials with a new update entry: 2.14.2 - Bugfix update Read the rest of this update entry...
  13. X

    Advanced Bb Codes Pack [Paid]

    The editor improvements section in the add-on overview gives a short summary. Basically it is is a bunch of tweaks to make copy & paste look right when copying from various sources. For example, the username copy & paste support actually supports copying basically 3-4 different ways XF can...
  14. X

    User Mentions Improvements by Xon

    This add-on only shows those icons when you are hovering over the clickable usergroup link. User Essentials allows embedding those icons next the the mention like the user icons being embedded next to a user mention.
  15. X

    Advanced Bb Codes Pack [Paid]

    It allows reduced the overall XF javascript size, as XF doesn't include/use jquery any more. I basically moved a bunch of work-around I had put into some client's styles into the add-on to make upgrading to XF2.3 easier. Yes, I've still got clients on XF2.2 :(
Back
Top Bottom