Version Description
- Minor update
Download this release
Release Info
Developer | MageNet |
Plugin | Website Monetization by MageNet |
Version | 1.0.25 |
Comparing to | |
See all releases |
Code changes from version 1.0.24 to 1.0.25
- MagenetLinkAutoinstall.php +3 -3
- monetization-by-magenet.php +1 -1
- readme.txt +3 -0
MagenetLinkAutoinstall.php
CHANGED
@@ -99,9 +99,9 @@ if (!class_exists('MagenetLinkAutoinstall')) {
|
|
99 |
|
100 |
$sql_table_magenet_links = "
|
101 |
CREATE TABLE `" . $wpdb->prefix . "magenet_links` (
|
102 |
-
`ID` INT(10)
|
103 |
-
`page_url` TEXT NOT NULL,
|
104 |
-
`link_html` TEXT NOT NULL,
|
105 |
PRIMARY KEY (`ID`)
|
106 |
)" . $charset_collate . ";";
|
107 |
$sql_add_index = "CREATE INDEX page_url ON `" . $wpdb->prefix . "magenet_links` (page_url(100));";
|
99 |
|
100 |
$sql_table_magenet_links = "
|
101 |
CREATE TABLE `" . $wpdb->prefix . "magenet_links` (
|
102 |
+
`ID` INT(10) NOT NULL AUTO_INCREMENT,
|
103 |
+
`page_url` TEXT NOT NULL DEFAULT '',
|
104 |
+
`link_html` TEXT NOT NULL DEFAULT '',
|
105 |
PRIMARY KEY (`ID`)
|
106 |
)" . $charset_collate . ";";
|
107 |
$sql_add_index = "CREATE INDEX page_url ON `" . $wpdb->prefix . "magenet_links` (page_url(100));";
|
monetization-by-magenet.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Website Monetization by MageNet
|
4 |
Description: Website Monetization by MageNet allows you to sell contextual ads from your pages automatically and receive payments with PayPal. To get started: 1) Click the "Activate" link to the left of this description, 2) <a href="http://www.magenet.com" target="_blank">Sign up for a MageNet Key</a>, and 3) Go to Settings > "Website Monetization by MageNet" configuration page, and save your MageNet Key.
|
5 |
-
Version: 1.0.
|
6 |
Author: MageNet.com
|
7 |
Author URI: http://www.magenet.com
|
8 |
Text Domain: website-monetization-by-magenet
|
2 |
/*
|
3 |
Plugin Name: Website Monetization by MageNet
|
4 |
Description: Website Monetization by MageNet allows you to sell contextual ads from your pages automatically and receive payments with PayPal. To get started: 1) Click the "Activate" link to the left of this description, 2) <a href="http://www.magenet.com" target="_blank">Sign up for a MageNet Key</a>, and 3) Go to Settings > "Website Monetization by MageNet" configuration page, and save your MageNet Key.
|
5 |
+
Version: 1.0.25
|
6 |
Author: MageNet.com
|
7 |
Author URI: http://www.magenet.com
|
8 |
Text Domain: website-monetization-by-magenet
|
readme.txt
CHANGED
@@ -80,6 +80,9 @@ MageNet crawler will index your sites the same way Google does. It will “read
|
|
80 |
4. "Pages options" menu
|
81 |
|
82 |
== Changelog ==
|
|
|
|
|
|
|
83 |
= 1.0.24 =
|
84 |
* Minor update
|
85 |
|
80 |
4. "Pages options" menu
|
81 |
|
82 |
== Changelog ==
|
83 |
+
= 1.0.25 =
|
84 |
+
* Minor update
|
85 |
+
|
86 |
= 1.0.24 =
|
87 |
* Minor update
|
88 |
|