As discussed and tested here and by myself the following HTML output
<meta property="fb:admins" content="foo,bar" />
should be:
<meta property="fb:admins" content="foo" />
<meta property="fb:admins" content="bar" />so if I fill the formfield with "foo,bar,person3" the module should print out 3 different HTML-Tags, not only one whith the list. It's only a warning by the debugger, but I think the module should be OG-Spec compliant ;)
Facebook-Tool to check an OG page
Example to the OG-Spec "Array"
Sorry, I'm not speaking english as fluent as I like to do.
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | metatag-n1915926-4.patch | 596 bytes | damienmckenna |
Comments
Comment #1
kn8 commentedI confirm this minor issue. Although facebook will recognize and parse the wrong format, it will throw a warning message in linter.
Solution would be to explode the string in fb:admins setting by "," and then print out all
<meta property="fb:admins" content="foo" />as separate lines.
Comment #2
damienmckennaThis is dependent upon #1282636: Support meta tags that allow multiple values (repeated tags), a needed enhancement to the API.
Comment #3
damienmckennaThe other issue is unblocked, so now this can be done.
Comment #4
damienmckennaJust took a single line to add this.
Comment #5
damienmckennaComment #6
damienmckennaCommitted.