Version Description
- Fixed: Minor bug
Download this release
Release Info
| Developer | webdorado |
| Plugin | |
| Version | 1.0.8 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.7 to 1.0.8
- facebook-feed-wd.php +10 -3
- readme.txt +4 -1
facebook-feed-wd.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
* Plugin Name: Facebook Feed WD
|
| 5 |
* Plugin URI: https://web-dorado.com/products/wordpress-facebook-feed-plugin.html
|
| 6 |
* Description:Facebook Feed WD is a completely customizable, responsive solution to help you display your Facebook feed on your WordPress website.
|
| 7 |
-
* Version: 1.0.
|
| 8 |
* Author: WebDorado
|
| 9 |
* Author URI: https://web-dorado.com/
|
| 10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
|
@@ -364,7 +364,7 @@ function ffwd_activate()
|
|
| 364 |
`name` text NOT NULL,
|
| 365 |
`description` mediumtext NOT NULL,
|
| 366 |
`type` varchar(32) NOT NULL,
|
| 367 |
-
`message` mediumtext
|
| 368 |
`story` mediumtext NOT NULL,
|
| 369 |
`place` mediumtext NOT NULL,
|
| 370 |
`message_tags` mediumtext NOT NULL,
|
|
@@ -384,6 +384,13 @@ function ffwd_activate()
|
|
| 384 |
) DEFAULT CHARSET=utf8;";
|
| 385 |
$wpdb->query($wd_fb_data);
|
| 386 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 387 |
$wd_fb_option = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "wd_fb_option` (
|
| 388 |
`id` bigint(20) NOT NULL,
|
| 389 |
`autoupdate_interval` int(4) NOT NULL,
|
|
@@ -651,7 +658,7 @@ add_action('init', 'ffwd_language_load');
|
|
| 651 |
function ffwd_version()
|
| 652 |
{
|
| 653 |
|
| 654 |
-
$version = '1.0.
|
| 655 |
|
| 656 |
if (get_option('ffwd_version') === false) {
|
| 657 |
add_option('ffwd_version', $version);
|
| 4 |
* Plugin Name: Facebook Feed WD
|
| 5 |
* Plugin URI: https://web-dorado.com/products/wordpress-facebook-feed-plugin.html
|
| 6 |
* Description:Facebook Feed WD is a completely customizable, responsive solution to help you display your Facebook feed on your WordPress website.
|
| 7 |
+
* Version: 1.0.8
|
| 8 |
* Author: WebDorado
|
| 9 |
* Author URI: https://web-dorado.com/
|
| 10 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
| 364 |
`name` text NOT NULL,
|
| 365 |
`description` mediumtext NOT NULL,
|
| 366 |
`type` varchar(32) NOT NULL,
|
| 367 |
+
`message` mediumtext NOT NULL,
|
| 368 |
`story` mediumtext NOT NULL,
|
| 369 |
`place` mediumtext NOT NULL,
|
| 370 |
`message_tags` mediumtext NOT NULL,
|
| 384 |
) DEFAULT CHARSET=utf8;";
|
| 385 |
$wpdb->query($wd_fb_data);
|
| 386 |
|
| 387 |
+
$wd_fb_data_collation="ALTER TABLE `" . $wpdb->prefix . "wd_fb_data`
|
| 388 |
+
MODIFY `name` text CHARACTER SET utf16 COLLATE utf16_bin,
|
| 389 |
+
MODIFY `description` mediumtext CHARACTER SET utf16 COLLATE utf16_bin,
|
| 390 |
+
MODIFY `message` mediumtext CHARACTER SET utf16 COLLATE utf16_bin
|
| 391 |
+
";
|
| 392 |
+
$wpdb->query($wd_fb_data_collation);
|
| 393 |
+
|
| 394 |
$wd_fb_option = "CREATE TABLE IF NOT EXISTS `" . $wpdb->prefix . "wd_fb_option` (
|
| 395 |
`id` bigint(20) NOT NULL,
|
| 396 |
`autoupdate_interval` int(4) NOT NULL,
|
| 658 |
function ffwd_version()
|
| 659 |
{
|
| 660 |
|
| 661 |
+
$version = '1.0.8';
|
| 662 |
|
| 663 |
if (get_option('ffwd_version') === false) {
|
| 664 |
add_option('ffwd_version', $version);
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-facebook-feed-plugin.html
|
|
| 4 |
Tags: customizable, facebook, facebook events, facebook feed, facebook group, facebook like box, facebook likes, facebook page, facebook photos, facebook plugin, facebook posts, likebox
|
| 5 |
Requires at least: 3.4
|
| 6 |
Tested up to: 4.6
|
| 7 |
-
Stable tag: 1.0.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -66,6 +66,9 @@ Upgrade to [Facebook Feed Pro](https://web-dorado.com/products/wordpress-faceboo
|
|
| 66 |
|
| 67 |
== Changelog ==
|
| 68 |
|
|
|
|
|
|
|
|
|
|
| 69 |
= 1.0.7 =
|
| 70 |
* Fixed: Bug in creating tables
|
| 71 |
|
| 4 |
Tags: customizable, facebook, facebook events, facebook feed, facebook group, facebook like box, facebook likes, facebook page, facebook photos, facebook plugin, facebook posts, likebox
|
| 5 |
Requires at least: 3.4
|
| 6 |
Tested up to: 4.6
|
| 7 |
+
Stable tag: 1.0.8
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 66 |
|
| 67 |
== Changelog ==
|
| 68 |
|
| 69 |
+
= 1.0.8 =
|
| 70 |
+
* Fixed: Minor bug
|
| 71 |
+
|
| 72 |
= 1.0.7 =
|
| 73 |
* Fixed: Bug in creating tables
|
| 74 |
|
