Plugin Directory

Changeset 780163


Ignore:
Timestamp:
09/30/2013 06:16:12 AM (12 years ago)
Author:
mohanjith
Message:
  • Improve History tab
  • Make easier to change wiki slugs
Location:
wordpress-wiki-plugin/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wordpress-wiki-plugin/trunk/readme.txt

    r475725 r780163  
    44Tags: wiki, buddypress, frontend editing
    55Requires at least: 3.0.1
    6 Tested up to: 3.3
    7 Stable tag: trunk
     6Tested up to: 3.6.1
     7Stable tag: tags/1.0.8.1
    88
    99Create a wiki as easily as adding a post
     
    8888
    8989== Upgrade Notice ==
    90 Up the version to work with update plugin.
     90* Improve History tab
     91* Make easier to change wiki slugs
    9192
    9293== Changelog ==
     94
     95= 1.0.8.1 =
     96* Improve History tab
     97* Make easier to change wiki slugs
    9398
    9499= 1.0.7 =
  • wordpress-wiki-plugin/trunk/wordpress-wiki-plugin.php

    r475717 r780163  
    66 Author: S H Mohanjith (Incsub)
    77 WDP ID: 225
    8  Version: 1.0.8
     8 Version: 1.0.8.1
    99 Stable tag: trunk
    1010 Author URI: http://premium.wpmudev.org
     
    2929     * @var     string  $current_version    Current version
    3030     */
    31     var $current_version = '1.0.8';
     31    var $current_version = '1.0.8.1';
    3232    /**
    3333     * @var     string  $translation_domain Translation domain
     
    8585    add_action('template_redirect', array(&$this, 'load_templates') );
    8686   
    87     add_filter('post_type_link', array(&$this, 'post_type_link'), 10, 3);
     87    // add_filter('post_type_link', array(&$this, 'post_type_link'), 10, 3);
    8888    add_filter('name_save_pre', array(&$this, 'name_save'));
    8989    // add_filter('the_content', array(&$this, 'the_content'));
     
    527527            // If we're comparing a revision to itself, redirect to the 'view' page for that revision or the edit page for that post
    528528            if ( $left_revision->ID == $right_revision->ID ) {
    529             $redirect = get_edit_post_link( $left_revision->ID );
    530             include( ABSPATH . 'wp-admin/js/revisions-js.php' );
     529            $redirect = get_permalink().'?action=edit';
    531530            break;
    532531            }
Note: See TracChangeset for help on using the changeset viewer.