Skip to content

Commit

Permalink
fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltorbert committed May 30, 2019
1 parent 523cefc commit 4ed7111
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/aioseop_functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -358,9 +358,9 @@ function aioseop_ajax_save_meta() {
die();
}
if ( $result != '' ) :
$label = "<label id='aioseop_label_{$target}_{$post_id}' class='aioseop-label-quickedit' for='{$target}editlink{$id}'>" . $result . '</label>';
$label = "<label id='aioseop_label_{$target}_{$post_id}' class='aioseop-label-quickedit' for='{$target}editlink{$post_id}'>" . $result . '</label>';
else :
$label = "<label id='aioseop_label_{$target}_{$post_id}' class='aioseop-label-quickedit' for='{$target}editlink{$id}'></label><strong><i>" . __( 'No', 'all-in-one-seo-pack' ) . ' ' . $target . '</i></strong>';
$label = "<label id='aioseop_label_{$target}_{$post_id}' class='aioseop-label-quickedit' for='{$target}editlink{$post_id}'></label><strong><i>" . __( 'No', 'all-in-one-seo-pack' ) . ' ' . $target . '</i></strong>';
endif;
$nonce = wp_create_nonce( "aioseop_meta_{$target}_{$post_id}" );
$output = '<a id="' . $target . 'editlink' . $post_id . '" '
Expand Down

0 comments on commit 4ed7111

Please sign in to comment.