Link Library - Version 7.3.11

Version Description

  • Fix to allow single quotes in empty search results message field
Download this release

Release Info

Developer jackdewey
Plugin Icon 128x128 Link Library
Version 7.3.11
Comparing to
See all releases

Code changes from version 7.3.10 to 7.3.11

link-library-admin.php CHANGED
@@ -6461,7 +6461,7 @@ function general_custom_fields_meta_box( $data ) {
6461
  $options['searchnoresultstext'] = __( 'No links found matching your search criteria', 'link-library' );
6462
  } ?>
6463
  <td style='padding-right:20px'>
6464
- <input type="text" id="searchnoresultstext" name="searchnoresultstext" size="80" value="<?php echo $options['searchnoresultstext']; ?>" />
6465
  </td>
6466
  </tr>
6467
  <tr>
6461
  $options['searchnoresultstext'] = __( 'No links found matching your search criteria', 'link-library' );
6462
  } ?>
6463
  <td style='padding-right:20px'>
6464
+ <input type="text" id="searchnoresultstext" name="searchnoresultstext" size="80" value="<?php echo stripslashes( $options['searchnoresultstext'] );?>" />
6465
  </td>
6466
  </tr>
6467
  <tr>
link-library.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Link Library
4
  Plugin URI: http://wordpress.org/extend/plugins/link-library/
5
  Description: Display links on pages with a variety of options
6
- Version: 7.3.10
7
  Author: Yannick Lefebvre
8
  Author URI: http://ylefebvre.github.io/
9
  Text Domain: link-library
3
  Plugin Name: Link Library
4
  Plugin URI: http://wordpress.org/extend/plugins/link-library/
5
  Description: Display links on pages with a variety of options
6
+ Version: 7.3.11
7
  Author: Yannick Lefebvre
8
  Author URI: http://ylefebvre.github.io/
9
  Text Domain: link-library
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://ylefebvre.github.io/wordpress-plugins/link-library/
4
  Tags: link, list, directory, page, library, AJAX, RSS, feeds, inline, search, paging, add, submit, import, batch, pop-up
5
  Requires at least: 4.4
6
  Tested up to: 6.0.1
7
- Stable tag: 7.3.10
8
 
9
  The purpose of this plugin is to add the ability to output a list of link categories and a complete list of links with notes and descriptions.
10
 
@@ -50,6 +50,9 @@ Further configuration is available under the Link Library Settings panel.
50
 
51
  == Changelog ==
52
 
 
 
 
53
  = 7.3.10 =
54
  * Fix for error when displaying part of the Global Options section
55
  * Updated promotional section in Global Options page with newest book published
4
  Tags: link, list, directory, page, library, AJAX, RSS, feeds, inline, search, paging, add, submit, import, batch, pop-up
5
  Requires at least: 4.4
6
  Tested up to: 6.0.1
7
+ Stable tag: 7.3.11
8
 
9
  The purpose of this plugin is to add the ability to output a list of link categories and a complete list of links with notes and descriptions.
10
 
50
 
51
  == Changelog ==
52
 
53
+ = 7.3.11 =
54
+ * Fix to allow single quotes in empty search results message field
55
+
56
  = 7.3.10 =
57
  * Fix for error when displaying part of the Global Options section
58
  * Updated promotional section in Global Options page with newest book published
render-link-library-sc.php CHANGED
@@ -2854,7 +2854,7 @@ function RenderLinkLibrary( $LLPluginClass, $generaloptions, $libraryoptions, $s
2854
  }
2855
 
2856
  if ( !empty( $searchstring ) && $linkcount == 1 && $level == 0 ) {
2857
- $output .= '<span class="nolinksfoundallcats">' . $searchnoresultstext . "</span>\n";
2858
  }
2859
 
2860
  if ( $usethumbshotsforimages && $level == 0 ) {
2854
  }
2855
 
2856
  if ( !empty( $searchstring ) && $linkcount == 1 && $level == 0 ) {
2857
+ $output .= '<span class="nolinksfoundallcats">' . stripslashes( $searchnoresultstext ) . "</span>\n";
2858
  }
2859
 
2860
  if ( $usethumbshotsforimages && $level == 0 ) {