Link Library - Version 7.4.3

Version Description

  • Further refinement of accepted HTML tags for advanced configuration table
Download this release

Release Info

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

Code changes from version 7.4.2 to 7.4.3

Files changed (3) hide show
  1. link-library-admin.php +62 -23
  2. link-library.php +1 -1
  3. readme.txt +4 -1
link-library-admin.php CHANGED
@@ -88,45 +88,84 @@ class link_library_plugin_admin {
88
  'title' => array(),
89
  'class' => array(),
90
  'data' => array(),
91
- 'rel' => array(),
92
  ),
 
 
 
 
 
 
 
 
 
 
93
  'br' => array(),
94
- 'em' => array(),
95
- 'ul' => array(
96
- 'class' => array(),
97
- ),
98
- 'ol' => array(
99
- 'class' => array(),
100
- ),
101
- 'li' => array(
102
- 'class' => array(),
103
- ),
104
- 'strong' => array(),
105
- 'div' => array(
106
  'class' => array(),
107
  'data' => array(),
108
  'style' => array(),
109
  ),
110
- 'span' => array(
111
- 'class' => array(),
112
- 'style' => array(),
113
- ),
114
- 'img' => array(
 
 
 
 
 
 
 
 
115
  'alt' => array(),
116
  'class' => array(),
117
  'height' => array(),
118
  'src' => array(),
119
  'width' => array(),
120
  ),
121
- 'select' => array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  'id' => array(),
123
  'class' => array(),
124
  'name' => array(),
125
  ),
126
- 'option' => array(
127
- 'value' => array(),
128
- 'selected' => array(),
129
- ),
 
 
 
130
  );
131
  }
132
 
88
  'title' => array(),
89
  'class' => array(),
90
  'data' => array(),
91
+ 'rel' => array(),
92
  ),
93
+ 'abbr' => array(
94
+ 'title' => array(),
95
+ ),
96
+ 'acronym' => array(
97
+ 'title' => true,
98
+ ),
99
+ 'b' => array(),
100
+ 'blockquote' => array(
101
+ 'cite' => array(),
102
+ ),
103
  'br' => array(),
104
+ 'cite' => array(
105
+ 'title' => array(),
106
+ ),
107
+ 'code' => array(),
108
+ 'del' => array(
109
+ 'datetime' => array(),
110
+ 'title' => array(),
111
+ ),
112
+ 'dd' => array(),
113
+ 'div' => array(
 
 
114
  'class' => array(),
115
  'data' => array(),
116
  'style' => array(),
117
  ),
118
+ 'em' => array(),
119
+ 'dl' => array(),
120
+ 'dt' => array(),
121
+ 'em' => array(),
122
+ 'h1' => array(),
123
+ 'h2' => array(),
124
+ 'h3' => array(),
125
+ 'h4' => array(),
126
+ 'h5' => array(),
127
+ 'h6' => array(),
128
+ 'hr' => array(),
129
+ 'i' => array(),
130
+ 'img' => array(
131
  'alt' => array(),
132
  'class' => array(),
133
  'height' => array(),
134
  'src' => array(),
135
  'width' => array(),
136
  ),
137
+ 'li' => array(
138
+ 'class' => array(),
139
+ ),
140
+ 'ol' => array(
141
+ 'class' => array(),
142
+ ),
143
+ 'option' => array(
144
+ 'value' => array(),
145
+ 'selected' => array(),
146
+ ),
147
+ 'p' => array(
148
+ 'class' => array(),
149
+ ),
150
+ 'q' => array(
151
+ 'cite' => array(),
152
+ 'title' => array(),
153
+ ),
154
+ 'ul' => array(
155
+ 'class' => array(),
156
+ ),
157
+ 'select' => array(
158
  'id' => array(),
159
  'class' => array(),
160
  'name' => array(),
161
  ),
162
+ 'span' => array(
163
+ 'class' => array(),
164
+ 'title' => array(),
165
+ 'style' => array(),
166
+ ),
167
+ 'strike' => array(),
168
+ 'strong' => array(),
169
  );
170
  }
171
 
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.4.2
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.4.3
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.1.1
7
- Stable tag: 7.4.2
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.4.2 =
54
  * Implemented some accessibility functions in tag filter
55
  * Fixed advanced table to accept HTML values once again
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.1.1
7
+ Stable tag: 7.4.3
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.4.3 =
54
+ * Further refinement of accepted HTML tags for advanced configuration table
55
+
56
  = 7.4.2 =
57
  * Implemented some accessibility functions in tag filter
58
  * Fixed advanced table to accept HTML values once again