Version Description
Works with WP4.6. Fixed a potential cross-site security vulnerability.
Download this release
Release Info
Developer | danlester |
Plugin | Google Doc Embedder |
Version | 2.6.1 |
Comparing to | |
See all releases |
Code changes from version 2.6 to 2.6.1
- gviewer.php +2 -2
- libs/tab-profiles.php +5 -5
- readme.txt +6 -1
gviewer.php
CHANGED
@@ -8,7 +8,7 @@ Author: Kevin Davis, Dan Lester
|
|
8 |
Author URI: https://wordpress.org/plugins/google-document-embedder/
|
9 |
Text Domain: google-document-embedder
|
10 |
Domain Path: /languages/
|
11 |
-
Version: 2.6
|
12 |
License: GPLv2
|
13 |
*/
|
14 |
|
@@ -38,7 +38,7 @@ License: GPLv2
|
|
38 |
*/
|
39 |
|
40 |
// boring init junk
|
41 |
-
$gde_ver = "2.6";
|
42 |
$gde_db_ver = "1.2"; // update also in gde_activate()
|
43 |
|
44 |
require_once( plugin_dir_path( __FILE__ ) . 'functions.php' );
|
8 |
Author URI: https://wordpress.org/plugins/google-document-embedder/
|
9 |
Text Domain: google-document-embedder
|
10 |
Domain Path: /languages/
|
11 |
+
Version: 2.6.1
|
12 |
License: GPLv2
|
13 |
*/
|
14 |
|
38 |
*/
|
39 |
|
40 |
// boring init junk
|
41 |
+
$gde_ver = "2.6.1";
|
42 |
$gde_db_ver = "1.2"; // update also in gde_activate()
|
43 |
|
44 |
require_once( plugin_dir_path( __FILE__ ) . 'functions.php' );
|
libs/tab-profiles.php
CHANGED
@@ -65,10 +65,10 @@
|
|
65 |
$cls = '';
|
66 |
}
|
67 |
?>
|
68 |
-
<tr id="profile-<?php echo $p['profile_id']; ?>"<?php echo $cls; ?>>
|
69 |
<td class="proid column-proid">
|
70 |
<strong>
|
71 |
-
<a href=""><?php echo $p['profile_id']; ?></a>
|
72 |
</strong><br>
|
73 |
<div class="row-actions" style="padding-bottom: 5px;">
|
74 |
<?php
|
@@ -77,10 +77,10 @@
|
|
77 |
</div>
|
78 |
</td>
|
79 |
<td class="name column-name">
|
80 |
-
<?php echo $p['profile_name']; ?>
|
81 |
</td>
|
82 |
<td class="description column-description">
|
83 |
-
<?php _e($p['profile_desc'], 'google-document-embedder'); ?>
|
84 |
</td>
|
85 |
</tr>
|
86 |
<?php
|
@@ -133,4 +133,4 @@
|
|
133 |
<?php
|
134 |
}
|
135 |
}
|
136 |
-
?>
|
65 |
$cls = '';
|
66 |
}
|
67 |
?>
|
68 |
+
<tr id="profile-<?php echo esc_attr($p['profile_id']); ?>"<?php echo $cls; ?>>
|
69 |
<td class="proid column-proid">
|
70 |
<strong>
|
71 |
+
<a href=""><?php echo esc_html($p['profile_id']); ?></a>
|
72 |
</strong><br>
|
73 |
<div class="row-actions" style="padding-bottom: 5px;">
|
74 |
<?php
|
77 |
</div>
|
78 |
</td>
|
79 |
<td class="name column-name">
|
80 |
+
<?php echo esc_html($p['profile_name']); ?>
|
81 |
</td>
|
82 |
<td class="description column-description">
|
83 |
+
<?php _e(esc_html($p['profile_desc']), 'google-document-embedder'); ?>
|
84 |
</td>
|
85 |
</tr>
|
86 |
<?php
|
133 |
<?php
|
134 |
}
|
135 |
}
|
136 |
+
?>
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: danlester, k3davis
|
|
3 |
Tags: doc, docx, pdf, ppt, pptx, xls, office, powerpoint, google, document, embed
|
4 |
Author URI: https://wordpress.org/plugins/google-document-embedder/
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 4.
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
|
@@ -143,6 +143,11 @@ specific features at this time, but it will function normally in this environmen
|
|
143 |
|
144 |
== Changelog ==
|
145 |
|
|
|
|
|
|
|
|
|
|
|
146 |
= 2.6 =
|
147 |
|
148 |
New version number to avoid previous version number conflicts.
|
3 |
Tags: doc, docx, pdf, ppt, pptx, xls, office, powerpoint, google, document, embed
|
4 |
Author URI: https://wordpress.org/plugins/google-document-embedder/
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 4.6
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
|
143 |
|
144 |
== Changelog ==
|
145 |
|
146 |
+
= 2.6.1 =
|
147 |
+
|
148 |
+
Works with WP4.6.
|
149 |
+
Fixed a potential cross-site security vulnerability.
|
150 |
+
|
151 |
= 2.6 =
|
152 |
|
153 |
New version number to avoid previous version number conflicts.
|