Recent content by digitalpoint

  1. digitalpoint

    Fixed utf8.php should be updated (php8.2)

    If $someVar is null, this worked before beta 6, but not after: {{ contains($someVar, 'some_string') ? 'something to show' : '' }} Changing it to this makes it work before and after beta 6: {{ $someVar && contains($someVar, 'some_string') ? 'something to show' : '' }}
  2. digitalpoint

    Fixed utf8.php should be updated (php8.2)

    FWIW, ran into an issue where using {{ contains() }} in a template was broken by this change. Specifically contains() calls substring method which even though PHP docs says needs to be a string, apparently it wasn't actually the case. In my case, there was a situation where contains() was...
  3. digitalpoint

    [DigitalPoint] App for Cloudflare® - Mostly more 2.3 compatibility changes

    Prevent autocompletion of authentication token (saw a situation where it could be overwritten with an admin's saved password for the site) XenForo 2.3 compatibility: Fix for template issue when managing country blocking due to XF core change in 2.3 beta 6 Fix various icons that didn't work in...
  4. digitalpoint

    [DigitalPoint] App for Cloudflare®

    digitalpoint updated [DigitalPoint] App for Cloudflare® with a new update entry: Mostly more 2.3 compatibility changes Read the rest of this update entry...
  5. digitalpoint

    Forcing Duotone in admin navigation

    In XenForo 2.3, admin navigation icons are all forced to Duotone, which might not always be desirable. You are effectively taking away the ability to use solid, regular, light, thin and brands if someone wants to. In my particular case, I use the brands Cloudflare icon, but XenForo tries...
  6. digitalpoint

    [DigitalPoint] App for Cloudflare®

    It looks like XenForo introduced a new Util class in the later versions of 2.3 (wasn't there in beta 3 I know) that makes it's own internal strtolower() function incompatible with PHP's. Easy enough to fix, but I'm wondering if it should be made to be compatible with PHP's normal string...
  7. digitalpoint

    [DigitalPoint] App for Cloudflare®

    Nothing change with that, and when I tested it, it's working as expected for me. Do you have any errors in your browser console?
  8. digitalpoint

    [DigitalPoint] App for Cloudflare®

    Ya, there seems to be something going on with the Cloudflare API (slowness for some of the calls). It seems to work itself out if you reload the page, but does seem to be something happening on Cloudflare's side right now.
  9. digitalpoint

    [DigitalPoint] App for Cloudflare® - XenForo 2.3 compatibility

    Added support for CLI tool to migrate existing data to/from internal_data/xfmg Added support for local-data mount point in XenForo 2.3 Added deprecation notice for Auto-Minify setting
  10. digitalpoint

    [DigitalPoint] App for Cloudflare®

    digitalpoint updated [DigitalPoint] App for Cloudflare® with a new update entry: XenForo 2.3 compatibility Read the rest of this update entry...
  11. digitalpoint

    XF 2.3 Icons in local-data://

    Serving those files locally is really going to be the simplest option. It's not user generated content that can grow infinitely... it's a finite number of static files (similar to the js folder or the styles folder), and if you are using an edge cache (like Cloudflare) the static content that...
  12. digitalpoint

    [DigitalPoint] App for Cloudflare®

    Has to do with CORS, so it makes sense to keep things simple and not require sites to setup CORS policies to make a vanilla install work. See: https://xenforo.com/community/threads/icons-in-local-data.220802/
  13. digitalpoint

    [DigitalPoint] App for Cloudflare®

    There was an update for 2.3 here, but no one said one way or another if it worked for them or not, so I never rolled it out officially: https://xenforo.com/community/threads/digitalpoint-app-for-cloudflare-r.206176/post-1676142
  14. digitalpoint

    XF 2.3 Featuring content

    I don’t disagree, it does feel a little misplaced, but also not sure where a better place for it would be. But wherever that is (in its current place or somewhere else), if an addon is replacing the functionally, it should remove/hide the default thing it’s replacing (or at least have a setting...
  15. digitalpoint

    XF 2.3 Featuring content

    Sounds like something the add-on should do if it's replacing default functionality?
Top Bottom