Version Description
Download this release
Release Info
Developer | VelvetBlues.com |
Plugin | Velvet Blues Update URLs |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- readme.txt +4 -3
- velvet-blues-update-urls.php +5 -6
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Velvet Blues
|
|
3 |
Donate link: http://www.velvetblues.com/web-development-blog/wordpress-plugin-update-urls/
|
4 |
Tags: permalinks, urls, links, update links, move wordpress, location, update urls, update permalinks
|
5 |
Requires at least: 2.5
|
6 |
-
Tested up to: 2.
|
7 |
-
Stable tag: 1.0.
|
8 |
|
9 |
Updates all urls and content links in your website.
|
10 |
|
@@ -56,4 +56,5 @@ Using this plugin is very simple. Navigate to Settings -> Update and follow the
|
|
56 |
|
57 |
== Update Log ==
|
58 |
|
59 |
-
* 1.0.1 - Fixed possible interactions with other plugins.
|
|
3 |
Donate link: http://www.velvetblues.com/web-development-blog/wordpress-plugin-update-urls/
|
4 |
Tags: permalinks, urls, links, update links, move wordpress, location, update urls, update permalinks
|
5 |
Requires at least: 2.5
|
6 |
+
Tested up to: 2.7
|
7 |
+
Stable tag: 1.0.2
|
8 |
|
9 |
Updates all urls and content links in your website.
|
10 |
|
56 |
|
57 |
== Update Log ==
|
58 |
|
59 |
+
* 1.0.1 - Fixed possible interactions with other plugins.
|
60 |
+
* 1.0.2 - Fixed PHP short tag problem, so as to be compatible with all configurations.
|
velvet-blues-update-urls.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.velvetblues.com/web-development-blog/wordpress-plugin-upd
|
|
5 |
Description: This plugin updates all urls in your website by replacing the old urls with the new.
|
6 |
Author: Velvet Blues
|
7 |
Author URI: http://www.velvetblues.com/
|
8 |
-
Version: 1.0.
|
9 |
*/
|
10 |
/* Copyright 2008 Velvet Blues Web Design (email : info@velvetblues.com)
|
11 |
|
@@ -71,13 +71,13 @@ Version: 1.0.1
|
|
71 |
<tr>
|
72 |
<th scope="row" style="width:300px;">Old URL</th>
|
73 |
<td>
|
74 |
-
<p><input name="VBUU_oldurl" type="text" id="VBUU_oldurl" value="" style="width:300px;"
|
75 |
</td>
|
76 |
</tr>
|
77 |
<tr>
|
78 |
<th scope="row" style="width:300px;">New URL</th>
|
79 |
<td>
|
80 |
-
<p><input name="VBUU_newurl" type="text" id="VBUU_newurl" value="" style="width:300px;"
|
81 |
</td>
|
82 |
</tr>
|
83 |
</table>
|
@@ -85,8 +85,7 @@ Version: 1.0.1
|
|
85 |
<input name="VBUU_settings_submit" value="Update URLs" type="submit" />
|
86 |
</p>
|
87 |
</form>
|
88 |
-
<?
|
89 |
-
}
|
90 |
-
|
91 |
add_action('admin_menu', 'VelvetBluesUU_add_options_page');
|
92 |
?>
|
5 |
Description: This plugin updates all urls in your website by replacing the old urls with the new.
|
6 |
Author: Velvet Blues
|
7 |
Author URI: http://www.velvetblues.com/
|
8 |
+
Version: 1.0.2
|
9 |
*/
|
10 |
/* Copyright 2008 Velvet Blues Web Design (email : info@velvetblues.com)
|
11 |
|
71 |
<tr>
|
72 |
<th scope="row" style="width:300px;">Old URL</th>
|
73 |
<td>
|
74 |
+
<p><input name="VBUU_oldurl" type="text" id="VBUU_oldurl" value="" style="width:300px;" /></p>
|
75 |
</td>
|
76 |
</tr>
|
77 |
<tr>
|
78 |
<th scope="row" style="width:300px;">New URL</th>
|
79 |
<td>
|
80 |
+
<p><input name="VBUU_newurl" type="text" id="VBUU_newurl" value="" style="width:300px;" /></p>
|
81 |
</td>
|
82 |
</tr>
|
83 |
</table>
|
85 |
<input name="VBUU_settings_submit" value="Update URLs" type="submit" />
|
86 |
</p>
|
87 |
</form>
|
88 |
+
<?php
|
89 |
+
}
|
|
|
90 |
add_action('admin_menu', 'VelvetBluesUU_add_options_page');
|
91 |
?>
|