Plugin Directory

Changeset 759718


Ignore:
Timestamp:
08/21/2013 03:47:41 AM (13 years ago)
Author:
GeertDD
Message:

Releasing v0.4.1. Bugfix: HTML5 "url" input type does not accept "http://" only which was the default value.

Location:
speedy-page-redirect/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • speedy-page-redirect/trunk/readme.txt

    r759238 r759718  
    44Requires at least: 3.0
    55Tested up to: 3.6
    6 Stable tag: 0.4
     6Stable tag: 0.4.1
    77
    88Redirect pages and posts to other locations.
     
    1010== Description ==
    1111
    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.
     12This 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.
    1313
    1414= Features =
     
    6464== Changelog ==
    6565
     66= 0.4.1 =
     67* Bugfix: HTML5 "url" input type does not accept "http://" only which was the default value.
     68
    6669= 0.4 =
    6770* Improved loading of translation files.
  • speedy-page-redirect/trunk/speedy-page-redirect.php

    r759230 r759718  
    44Plugin URI: http://wordpress.org/extend/plugins/speedy-page-redirect/
    55Description: Redirect pages and posts to other locations.
    6 Version: 0.4
     6Version: 0.4.1
    77Author: Geert De Deckere
    88Author URI: http://geertdedeckere.be/
     
    3636     * @const string
    3737     */
    38     const VERSION = '0.4';
     38    const VERSION = '0.4.1';
    3939
    4040    /**
     
    167167        // Default data entered in the form
    168168        $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
    170170            'status'  => 301,
    171171        );
Note: See TracChangeset for help on using the changeset viewer.