Roman Schmid

Results 21 issues of Roman Schmid

Latest master branch version. Steps to reproduce: In the CMS, klick "Browse files...", choose any file and click "Delete". The following error shows up in the JS console: apprise is...

There are several components in the core that don't really belong to a "core". The problem is, that it's currently really hard to find anybody that maintains modules, but to...

planning
question

Order Status Log emails were introduced here: https://github.com/silvershop/silvershop-core/pull/534 @anselmdk can you add this?

Orders were previously rendered by using SilverStripe GridField styles. These styles do no longer apply and orders look ugly in the CMS. Maybe it would be better to create a...

task

# Multi-Currency Shop currently operates with just one currency. Having a good support for multi-currency was requested multiple times already. Since support for multi-currency touches on many core elements of...

planning
question

Fields like `FirstName`, `Surname` etc. are currently stored in `Address`, `Order` and `Member`, which can to differently populated data (eg. the Address might lack `FirstName` and `Surname`, while the data...

enhancement

The current API error payload doesn't match the ember [json-api specification](http://jsonapi.org/format/#errors). Here's how it currently looks: ``` {message: "Token expired.", code: 3} ``` Here's how it should look: ``` {...

enhancement

Returning malformed parameters in error-messages opens a door for XSS attacks. If the "model" or "ID" parameter contains malicious code and a developer displays error-messages in his application, there's the...

A populated relation might look like this when serialized: ``` "myRelation": [1, 5, 6] ``` If that relation contains no children, the "myRelation" key is entirely missing from the serialized...

Relations with no records should still show up in the serialized data, just as an empty array. Added tests to check serialization behavior. Looks like a big change, but most...