@@ -198,7 +198,7 @@ public static function app_section() {
198
198
return ;
199
199
200
200
echo '<section id="debug-app"> ' ;
201
- echo '<header><h3><a href=" ' . self ::get_app_edit_base_uri ( $ facebook_loader ->credentials ['app_id ' ] ) . '" target="_blank"> ' . esc_html ( sprintf ( __ ( 'App %s ' , 'facebook ' ), $ facebook_loader ->credentials ['app_id ' ] ) ) . '</a></h3></header> ' ;
201
+ echo '<header><h3><a href=" ' . esc_url ( self ::get_app_edit_base_uri ( $ facebook_loader ->credentials ['app_id ' ] ), array ( ' http ' , ' https ' ) ) . '" target="_blank"> ' . esc_html ( sprintf ( __ ( 'App %s ' , 'facebook ' ), $ facebook_loader ->credentials ['app_id ' ] ) ) . '</a></h3></header> ' ;
202
202
203
203
self ::app_editors ( $ facebook_loader ->credentials ['app_id ' ] );
204
204
self ::app_details ( $ facebook_loader ->credentials ['app_id ' ] );
@@ -284,12 +284,12 @@ public static function app_editors( $app_id ) {
284
284
if ( $ wordpress_users_display_count === 1 ) {
285
285
$ ask_string = $ wordpress_users_display [0 ];
286
286
} else if ( $ wordpress_users_display_count === 2 ) {
287
- $ ask_string = $ wordpress_users_display [0 ] . ' ' . _x ( 'or ' , 'bridge between two options: this or that or these ' , 'facebook ' ) . ' ' . $ wordpress_users_display [1 ];
287
+ $ ask_string = $ wordpress_users_display [0 ] . ' ' . esc_html ( _x ( 'or ' , 'bridge between two options: this or that or these ' , 'facebook ' ) ) . ' ' . $ wordpress_users_display [1 ];
288
288
} else {
289
- $ ask_string = ', ' . _x ( 'or ' , 'bridge between two options: this or that or these ' , 'facebook ' ) . ' ' . array_pop ( $ wordpress_users_display );
289
+ $ ask_string = ', ' . esc_html ( _x ( 'or ' , 'bridge between two options: this or that or these ' , 'facebook ' ) ) . ' ' . array_pop ( $ wordpress_users_display );
290
290
$ ask_string = implode ( ', ' , $ wordpress_users_display ) . $ ask_string ;
291
291
}
292
- echo '<p> ' . sprintf ( __ ( '%s can change these application settings on Facebook. ' , 'facebook ' ), $ ask_string ) . '</p> ' ;
292
+ echo '<p> ' . sprintf ( esc_html ( __ ( '%s can change these application settings on Facebook. ' , 'facebook ' ) ), $ ask_string ) . '</p> ' ;
293
293
}
294
294
295
295
/**
@@ -315,14 +315,16 @@ public static function app_details( $app_id ) {
315
315
316
316
// link to the relevant Facebook app editor screen
317
317
$ app_edit_base_uri = self ::get_app_edit_base_uri ( $ app_id );
318
+ $ app_details_uri = $ app_edit_base_uri . 'appdetails/ ' ;
319
+ $ app_summary_uri = $ app_edit_base_uri . 'summary/ ' ;
318
320
319
321
echo '<table id="facebook-app-login-fields"> ' ;
320
322
echo '<caption> ' . esc_html ( __ ( 'Facebook Login ' , 'facebook ' ) ) . '</caption> ' ;
321
323
echo '<thead><tr><th> ' . esc_html ( _x ( 'Setting ' , 'Table column header. The Facebook application setting. ' , 'facebook ' ) ) . '</th><th> ' . esc_html ( _x ( 'Value ' , 'Facebook application setting retrieved from Facebook servers. ' , 'facebook ' ) ) . '</th></tr></thead> ' ;
322
324
echo '<tbody> ' ;
323
325
324
326
// app name
325
- echo '<tr><th><a href=" ' . $ app_edit_base_uri . 'appdetails/ #name" target="_blank"> ' . esc_html ( __ ( 'App name ' , 'facebook ' ) ) . '</a></th><td ' ;
327
+ echo '<tr><th><a href=" ' . esc_url ( $ app_details_uri . '#name ' , array ( ' http ' , ' https ' ) ) . ' " target="_blank"> ' . esc_html ( __ ( 'App name ' , 'facebook ' ) ) . '</a></th><td ' ;
326
328
if ( isset ( $ app_details ['name ' ] ) && $ app_details ['name ' ] ) {
327
329
echo '>" ' . esc_html ( $ app_details ['name ' ] ) . '" ' ;
328
330
} else {
@@ -338,7 +340,7 @@ public static function app_details( $app_id ) {
338
340
echo '</td></tr> ' ;
339
341
340
342
// app domains able to act on behalf of the application
341
- echo '<tr><th><a href=" ' . $ app_edit_base_uri . 'summary/ " target="_blank"> ' . esc_html ( __ ( 'App Domains ' , 'facebook ' ) ) . '</a></th><td ' ;
343
+ echo '<tr><th><a href=" ' . esc_url ( $ app_summary_uri , array ( ' http ' , ' https ' ) ) . '" target="_blank"> ' . esc_html ( __ ( 'App Domains ' , 'facebook ' ) ) . '</a></th><td ' ;
342
344
if ( isset ( $ app_details ['app_domains ' ] ) && ! empty ( $ app_details ['app_domains ' ] ) ) {
343
345
echo '><ul> ' ;
344
346
foreach ( $ app_details ['app_domains ' ] as $ app_domain ) {
@@ -352,18 +354,17 @@ public static function app_details( $app_id ) {
352
354
echo '</td></tr> ' ;
353
355
354
356
// Website with Facebook Login
355
- echo '<tr><th><a href=" ' . $ app_edit_base_uri . ' summary/ #site_url_input" target="_blank"> ' . esc_html ( __ ( 'Website ' , 'facebook ' ) ) . '</a></th><td ' ;
357
+ echo '<tr><th><a href=" ' . esc_url ( $ app_summary_uri . ' #site_url_input ' , array ( ' http ' , ' https ' ) ) . ' " target="_blank"> ' . esc_html ( __ ( 'Website ' , 'facebook ' ) ) . '</a></th><td ' ;
356
358
if ( isset ( $ app_details ['website_url ' ] ) && $ app_details ['website_url ' ] ) {
357
- $ app_details ['website_url ' ] = esc_url ( $ app_details ['website_url ' ], array ( 'http ' , 'https ' ) );
358
- echo '><a href=" ' . $ app_details ['website_url ' ] . '" target="_blank"> ' . $ app_details ['website_url ' ] . '</a> ' ;
359
+ echo '><a href=" ' . esc_url ( $ app_details ['website_url ' ], array ( 'http ' , 'https ' ) ) . '" target="_blank"> ' . esc_html ( $ app_details ['website_url ' ] ) . '</a> ' ;
359
360
} else {
360
361
echo ' class="error-message"> ' ;
361
362
echo esc_html ( sprintf ( __ ( 'Not set. Consider using: %s ' , 'facebook ' ), home_url ( '/ ' ) ) );
362
363
}
363
364
echo '</td></tr> ' ;
364
365
365
366
// One-line description
366
- echo '<tr><th><a href=" ' . $ app_edit_base_uri . 'appdetails/ " target="_blank"> ' . esc_html ( __ ( 'One-line description ' , 'facebook ' ) ) . '</a></th><td ' ;
367
+ echo '<tr><th><a href=" ' . esc_url ( $ app_details_uri , array ( ' http ' , ' https ' ) ) . '" target="_blank"> ' . esc_html ( __ ( 'One-line description ' , 'facebook ' ) ) . '</a></th><td ' ;
367
368
if ( isset ( $ app_details ['auth_dialog_headline ' ] ) && $ app_details ['auth_dialog_headline ' ] ) {
368
369
echo '>" ' . esc_html ( $ app_details ['auth_dialog_headline ' ] ) . '" ' ;
369
370
} else {
@@ -379,36 +380,35 @@ public static function app_details( $app_id ) {
379
380
echo '</td></tr> ' ;
380
381
381
382
// publish permissions explanation
382
- echo '<tr><th><a href=" ' . $ app_edit_base_uri . 'appdetails/ " target="_blank"> ' . esc_html ( _x ( 'Publish permissions explanation ' , 'Explain the reason for requesting publish permissions from a Facebook user ' , 'facebook ' ) ) . '</a></th><td ' ;
383
+ echo '<tr><th><a href=" ' . esc_url ( $ app_details_uri , array ( ' http ' , ' https ' ) ) . '" target="_blank"> ' . esc_html ( _x ( 'Publish permissions explanation ' , 'Explain the reason for requesting publish permissions from a Facebook user ' , 'facebook ' ) ) . '</a></th><td ' ;
383
384
if ( isset ( $ app_details ['auth_dialog_perms_explanation ' ] ) && $ app_details ['auth_dialog_perms_explanation ' ] )
384
385
echo '>" ' . esc_html ( $ app_details ['auth_dialog_perms_explanation ' ] ) . '" ' ;
385
386
else
386
387
echo ' class="error-message"> ' . esc_html ( sprintf ( __ ( 'Not set. Consider using: %s ' , 'facebook ' ), '" ' . __ ( 'Publish new posts to your Facebook Timeline or Page. ' , 'facebook ' ) . '" ' ) );
387
388
echo '</td></tr> ' ;
388
389
389
390
// Privacy Policy
390
- echo '<tr><th><a href=" ' . $ app_edit_base_uri . 'appdetails/ #privacy_url" target="_blank"> ' . esc_html ( __ ( 'Privacy Policy ' , 'facebook ' ) ) . '</a></th><td ' ;
391
+ echo '<tr><th><a href=" ' . esc_url ( $ app_details_uri . '#privacy_url ' , array ( ' http ' , ' https ' ) ) . ' " target="_blank"> ' . esc_html ( __ ( 'Privacy Policy ' , 'facebook ' ) ) . '</a></th><td ' ;
391
392
if ( isset ( $ app_details ['privacy_policy_url ' ] ) && $ app_details ['privacy_policy_url ' ] ) {
392
- $ app_details ['privacy_policy_url ' ] = esc_url ( $ app_details ['privacy_policy_url ' ], array ( 'http ' , 'https ' ) );
393
- echo '><a href=" ' . $ app_details ['privacy_policy_url ' ] . '" target="_blank"> ' . $ app_details ['privacy_policy_url ' ] . '</a> ' ;
393
+ echo '><a href=" ' . esc_url ( $ app_details ['privacy_policy_url ' ], array ( 'http ' , 'https ' ) ) . '" target="_blank"> ' . esc_html ( $ app_details ['privacy_policy_url ' ] ) . '</a> ' ;
394
394
} else {
395
395
echo ' class="error-message"> ' . esc_html ( __ ( 'Not set. ' , 'facebook ' ) ) . ' ' . esc_html ( _x ( 'Create a new page? ' , 'Create a new WordPress page ' , 'facebook ' ) );
396
396
}
397
397
echo '</td></tr> ' ;
398
398
399
399
// Terms of Service
400
- echo '<tr><th><a href=" ' . $ app_edit_base_uri . 'appdetails/ #tos_url" target="_blank"> ' . esc_html ( __ ( 'Terms of Service ' , 'facebook ' ) ) . '</a></th><td ' ;
400
+ echo '<tr><th><a href=" ' . esc_url ( $ app_details_uri . '#tos_url ' , array ( ' http ' , ' https ' ) ) . ' " target="_blank"> ' . esc_html ( __ ( 'Terms of Service ' , 'facebook ' ) ) . '</a></th><td ' ;
401
401
if ( isset ( $ app_details ['terms_of_service_url ' ] ) && $ app_details ['terms_of_service_url ' ] ) {
402
402
$ app_details ['terms_of_service_url ' ] = esc_url ( $ app_details ['terms_of_service_url ' ], array ( 'http ' , 'https ' ) );
403
- echo '><a href=" ' . $ app_details ['terms_of_service_url ' ] . '" target="_blank"> ' . $ app_details ['terms_of_service_url ' ] . '</a> ' ;
403
+ echo '><a href=" ' . esc_url ( $ app_details ['terms_of_service_url ' ], array ( ' http ' , ' https ' ) ) . '" target="_blank"> ' . esc_html ( $ app_details ['terms_of_service_url ' ] ) . '</a> ' ;
404
404
} else {
405
405
echo ' class="error-message"> ' ;
406
406
echo esc_html ( __ ( 'Not set. ' , 'facebook ' ) ) . ' ' . esc_html ( _x ( 'Create a new page? ' , 'Create a new WordPress page ' , 'facebook ' ) );
407
407
}
408
408
echo '</td></tr> ' ;
409
409
410
410
// Logo
411
- echo '<tr><th><a href=" ' . $ app_edit_base_uri . 'appdetails/ " target="_blank"> ' . esc_html ( _x ( 'Logo ' , 'Facebook application logo ' , 'facebook ' ) ) . '</a></th><td ' ;
411
+ echo '<tr><th><a href=" ' . esc_url ( $ app_details_uri , array ( ' http ' , ' https ' ) ) . '" target="_blank"> ' . esc_html ( _x ( 'Logo ' , 'Facebook application logo ' , 'facebook ' ) ) . '</a></th><td ' ;
412
412
if ( isset ( $ app_details ['logo_url ' ] ) && $ app_details ['logo_url ' ] ) {
413
413
echo '><img alt=" ' . esc_attr ( __ ( 'Facebook application logo ' , 'facebook ' ) ) . '" src=" ' . esc_url ( $ app_details ['logo_url ' ], array ( 'http ' , 'https ' ) ) . '" /> ' ;
414
414
} else {
@@ -417,7 +417,7 @@ public static function app_details( $app_id ) {
417
417
echo '</td></tr> ' ;
418
418
419
419
// Icon
420
- echo '<tr><th><a href=" ' . $ app_edit_base_uri . 'appdetails/ " target="_blank"> ' . esc_html ( _x ( 'Icon ' , 'Facebook application icon ' , 'facebook ' ) ) . '</a></th><td ' ;
420
+ echo '<tr><th><a href=" ' . esc_url ( $ app_details_uri , array ( ' http ' , ' https ' ) ) . '" target="_blank"> ' . esc_html ( _x ( 'Icon ' , 'Facebook application icon ' , 'facebook ' ) ) . '</a></th><td ' ;
421
421
if ( isset ( $ app_details ['icon_url ' ] ) && $ app_details ['icon_url ' ] ) {
422
422
echo '><img alt=" ' . esc_attr ( __ ( 'Facebook application icon ' , 'facebook ' ) ) . '" src=" ' . esc_url ( $ app_details ['icon_url ' ], array ( 'http ' , 'https ' ) ) . '" /> ' ;
423
423
} else {
@@ -550,8 +550,7 @@ public static function post_to_page_section() {
550
550
$ page_link = $ post_to_page ['link ' ];
551
551
else
552
552
$ page_link = 'https://www.facebook.com/ ' . $ post_to_page ['id ' ];
553
- $ page_link = esc_url ( $ page_link , array ( 'http ' , 'https ' ) );
554
- echo '<p> ' . sprintf ( esc_html ( _x ( 'Publishing to %s. ' , 'publishing to a page name on Facebook.com ' , 'facebook ' ) ), '<a href=" ' . $ page_link . '"> ' . esc_html ( $ post_to_page ['name ' ] ) . '</a> ' );
553
+ echo '<p> ' . sprintf ( esc_html ( _x ( 'Publishing to %s. ' , 'publishing to a page name on Facebook.com ' , 'facebook ' ) ), '<a href=" ' . esc_url ( $ page_link , array ( 'http ' , 'https ' ) ) . '"> ' . esc_html ( $ post_to_page ['name ' ] ) . '</a> ' );
555
554
unset( $ page_link );
556
555
if ( isset ( $ post_to_page ['set_by_user ' ] ) ) {
557
556
if ( get_current_user_id () == $ post_to_page ['set_by_user ' ] ) {
0 commit comments