Plugin Directory

Changeset 2988645


Ignore:
Timestamp:
11/03/2023 05:28:43 PM (2 years ago)
Author:
fareharbor
Message:

Fix double quote attributes

Location:
fareharbor/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • fareharbor/trunk/fareharbor.php

    r2985979 r2988645  
    44    Plugin URI: https://fareharbor.com/help/setup/wordpress-plugin/
    55    Description: Easily add FareHarbor reservation calendars and buttons to your site
    6     Version: 3.6.8
     6    Version: 3.6.9
    77    Author: FareHarbor
    88    Author URI: https://fareharbor.com
     
    284284
    285285      $link_attrs_string = '';
    286       foreach ( $link_attrs as $name => $value )
    287         $link_attrs_string .= esc_attr(" $name=\"$value\"");
     286      foreach ( $link_attrs as $name => $value ) {
     287        $value = esc_attr($value);
     288        $link_attrs_string .= " $name=\"$value\"";
     289      }
    288290
    289291      if ( trim( $content ) )
  • fareharbor/trunk/readme.txt

    r2985979 r2988645  
    4444
    4545== Changelog ==
     46= 3.6.9 =
     47* Fixed double quote attribute issue.
     48
    4649= 3.6.8 =
    4750* Updated tested up to version to 6.2.2
Note: See TracChangeset for help on using the changeset viewer.