René Sinnbeck
René Sinnbeck
@Juhlinus The issue would be that my index method does not have a 'prop' for a single project's data, only for all subscribed projects. Currently I am indeed using a...
This would most likely work if you used the correct namespace for the class .. ```php $patrons = new \Patreon\API(fetch_campaign_details($12346));
It works if I manually downgrade the user with `runuser www-data -c`. My guess it that the command somehow isn't escaped properly .. I cannot figure out why. If I...
I managed to get it working by changing the `lando-entrypoint.sh` file ``` su -s /bin/sh -c '"$@"' ${LANDO_DROP_USER} -- _ "$@" || tail -f /dev/null
This is my hack for react. ```js onChange={([newDate]) => { if (!fp?.current?.flatpickr) return onChange(() => { if (! newDate && ! clearable) { const dateIso = new Date(); fp.current.flatpickr.setDate(dateIso, false)...
Export to json and import that. Then pass it in as options. This is how I do it in react ```js import messages from '@/i18n' //json file import Lang from...
Ok it seems I managed to get it working. I just had to use `strlen()` instead of `mb_strlen()`. More specifically I changed this one to `strlen()` and it works now...
Thanks for the heads up. I am still a bit new to the whole SPSS thing,but I will take a look at the current tests and see if I can...
Ah now that is quite interesting. Both seem like great PR's. I will pull them and see if I can break them in any ways :) Great work! Edit: Which...