Skip to content

Commit

Permalink
fix missing close bracket for select tags on setting page (#99)
Browse files Browse the repository at this point in the history
* fix missing close bracket for select tags on setting page

* bump version to 1.12.5
  • Loading branch information
joshuarrrr authored May 16, 2018
1 parent 57cb2db commit 69e2434
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions wp-parsely.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Plugin URI: http://www.parsely.com/
Description: This plugin makes it a snap to add Parse.ly tracking code to your WordPress blog.
Author: Mike Sukmanowsky ( mike@parsely.com )
Version: 1.12.4
Version: 1.12.5
Requires at least: 4.0.0
Author URI: http://www.parsely.com/
License: GPL2
Expand Down Expand Up @@ -46,7 +46,7 @@ class Parsely {
*
* @codeCoverageIgnoreStart
*/
const VERSION = '1.12.4';
const VERSION = '1.12.5';
const MENU_SLUG = 'parsely'; // Defines the page param passed to options-general.php
const MENU_TITLE = 'Parse.ly'; // Text to be used for the menu as seen in Settings sub-menu
const MENU_PAGE_TITLE = 'Parse.ly > Settings'; // Text shown in <title></title> when the settings screen is viewed
Expand Down Expand Up @@ -829,6 +829,8 @@ public function print_select_tag( $args ) {
echo sprintf( "<select name='%s' id='%s'", esc_attr( $name ), esc_attr( $name ) );
}

echo '>';

foreach ( $select_options as $key => $val ) {
echo '<option value="' . esc_attr( $key ) . '" ';

Expand Down

0 comments on commit 69e2434

Please sign in to comment.