Based on the documentation here http://developers.facebook.com/docs/reference/plugins/comments/ when using an Application ID to assign moderation, you need to use the property "fb:app_id". Facebook comments box doesn't, using:

<meta property="fb:admins" content="{YOUR_FACEBOOK_USER_ID}"/>

Where it needs to use

<meta property="fb:app_id" content="{YOUR_APPLICATION_ID}"/>

When an application is being used for the moderation.

Comments

Bastlynn’s picture

StatusFileSize
new2.04 KB
new1.91 KB

Patches attached below.

Bastlynn’s picture

StatusFileSize
new1.99 KB

Correcting a minor issue n the D6 patch.

Bastlynn’s picture

StatusFileSize
new2.05 KB
new2 KB

Gah, found another set of minor typo bugs. That's what I get for coding while sick. Corrected patches attached.

Bastlynn’s picture

StatusFileSize
new2.05 KB
new2 KB

And one last round.

Bastlynn’s picture

Status: Active » Needs review

Setting to needs review.

dandaman’s picture

I tested the Drupal 6 patch and it worked very well for my site. Thanks for the patch!

dandaman’s picture

Issue summary: View changes

Fixing code display.

Bastlynn’s picture

Issue summary: View changes
Bastlynn’s picture

makangus’s picture

I don't think we need both isset and !empty on this line if (isset($app_id) && !empty($app_id)) {

if (!empty($app_id)) { should do it.

shahidbscs’s picture

Thank you so much Bastlynn, very nice working.
It will be very appreciated if you update solution on D7 release :)