Changeset 759718
- Timestamp:
- 08/21/2013 03:47:41 AM (13 years ago)
- Location:
- speedy-page-redirect/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
speedy-page-redirect.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
speedy-page-redirect/trunk/readme.txt
r759238 r759718 4 4 Requires at least: 3.0 5 5 Tested up to: 3.6 6 Stable tag: 0.4 6 Stable tag: 0.4.1 7 7 8 8 Redirect pages and posts to other locations. … … 10 10 == Description == 11 11 12 This plugin adds a meta box to your page and post screens. You can enter a new destination URL to which the page will be redirected.12 This lightweight plugin adds a meta box to your page and post screens. You can enter a new destination URL to which the page will be redirected. 13 13 14 14 = Features = … … 64 64 == Changelog == 65 65 66 = 0.4.1 = 67 * Bugfix: HTML5 "url" input type does not accept "http://" only which was the default value. 68 66 69 = 0.4 = 67 70 * Improved loading of translation files. -
speedy-page-redirect/trunk/speedy-page-redirect.php
r759230 r759718 4 4 Plugin URI: http://wordpress.org/extend/plugins/speedy-page-redirect/ 5 5 Description: Redirect pages and posts to other locations. 6 Version: 0.4 6 Version: 0.4.1 7 7 Author: Geert De Deckere 8 8 Author URI: http://geertdedeckere.be/ … … 36 36 * @const string 37 37 */ 38 const VERSION = '0.4 ';38 const VERSION = '0.4.1'; 39 39 40 40 /** … … 167 167 // Default data entered in the form 168 168 $default = array( 169 'url_raw' => ' http://',169 'url_raw' => '', // Don't prefill the field with "http://" because such an incomplete URL triggers an HTML5 error for the "url" input type 170 170 'status' => 301, 171 171 );
Note: See TracChangeset
for help on using the changeset viewer.