Skip to content

Commit 21e5e67

Browse files
committed
PNGCrushed everything.
1 parent 954e5df commit 21e5e67

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

fb-social-publisher-mentioning.php

+6-2
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ function fb_add_page_mention_box() {
159159
function fb_add_page_mention_box_content( $post ) {
160160
//wp_enqueue_script('suggest');
161161

162+
global $facebook;
163+
162164
// Use nonce for verification
163165
wp_nonce_field( plugin_basename( __FILE__ ), 'fb_page_mention_box_noncename' );
164166

@@ -172,8 +174,8 @@ function fb_add_page_mention_box_content( $post ) {
172174
$fb_user = fb_get_current_user();
173175

174176
if ($fb_user) {
175-
$perms = $facebook->api('/me/permissions', 'GET', array('ref' => 'fbwpp'));
176-
}
177+
$perms = $facebook->api('/me/permissions', 'GET', array('ref' => 'fbwpp'));
178+
}
177179

178180
if ($fb_user && isset($perms['data'][0]['manage_pages']) && isset($perms['data'][0]['publish_actions']) && isset($perms['data'][0]['publish_stream'])) {
179181
// The actual fields for data entry
@@ -272,6 +274,8 @@ function fb_add_friend_mention_box() {
272274
}
273275

274276
function fb_add_friend_mention_box_content( $post ) {
277+
global $facebook;
278+
275279
wp_enqueue_script('suggest');
276280

277281
// Use nonce for verification

0 commit comments

Comments
 (0)