Althena.9136:

In buff_decription from this Items are no <br> Attribute:

42006, 42007, 42008, 42009, 42010, 43251, 43866

That are Upgrade_Components.

Hidiho Althena

Captain Combat.9036:

\n (new line) is the equivalent of br (break line).

Althena.9136:

Ther are only a Space. No \n.
The other Items had a <br>.

poke.3712:

I checked each of those items you mentioned, and each of them contains a multi-line string in the description of the buff. For example:


{"buff":{"skill_id":"19635","description":"+11 Condition Damage\n+11 Precision\n+11 Toughness\n+11 Power\n+11 Vitality\n+11 Healing Power\n+2% Critical Damage\n+3% Magic Find"},"attributes":[]}

Decoding that JSON object will result in a multi-line text like this:


+11 Condition Damage
+11 Precision
+11 Toughness
+11 Power
+11 Vitality
+11 Healing Power
+2% Critical Damage
+3% Magic Find

Althena.9136:

Hm, ok, in my Database is the \n changed to a break. Thats not good

But i think its a failure because of other items have a <br>

I think Anet will correct it. (i hope)

Hidiho Althena

Dr Ishmael.9685:

Not a failure, just an inconsistency. But also an indication that the GW2 engine is robust enough to recognize both \n and <br> and translate them both to ASCII character 0×0D (linefeed). You should strive to include the same robustness in your program.