Roman Schmid
Roman Schmid
Sounds good. Do you already have an implementation in mind? A PR would be welcome!
Not really sure what that patch does? This line also covers the `undefined` case? $.support.focusinBubbles = !!($.browser.msie); What were the errors you had? I think you should check for `$.browser`...
@andrelohmann Yeah, I just updated my comment above. Possible fix could be: $.support.focusinBubbles = !!($.browser) && !$.browser.msie;
I'm not sure how this was tested, but I don't think the added code works as expected? Currently it's: !!($.browser.msie) && !$.browser.msie; But that's twice checking for a property of...
Have you tried using `getLocalizedValue` or the shortcut `T`? Eg. Something like this: ``` $sms_data_s = DataObject::get_by_id('SMSTemplate', 1)->T('SMSContent'); ``` Btw. If you're using SilverStripe 3.1 or newer, I suggest you...
This is possible by creating a folder with restricted view permissions and upload to that folder. The files will inherit that permission.
Not sure if I understand your goal correctly. So you already can enter the translations in ModelAdmin, but not the relations? Did you see this: https://github.com/bummzack/translatable-dataobject/issues/12 ? Wouldn't it be...
I think the reason for that is, that assets located in the protected filesystem are all routed through PHP (to check for permissions). So the things the webserver does by...
It doesn't work because all requests to protected (unpublished) files are routed through PHP (`ProtectedFileController` to be exact). It seems like the actual response is then generated via `FlysystemAssetStore` ->...
A lot of the functionality of this module will be replaced by SwiftMailer. The only thing I can think of that needs to be ported would be the emogrifier part…...