Changeset 780163
- Timestamp:
- 09/30/2013 06:16:12 AM (12 years ago)
- Location:
- wordpress-wiki-plugin/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wordpress-wiki-plugin.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-wiki-plugin/trunk/readme.txt
r475725 r780163 4 4 Tags: wiki, buddypress, frontend editing 5 5 Requires at least: 3.0.1 6 Tested up to: 3. 37 Stable tag: t runk6 Tested up to: 3.6.1 7 Stable tag: tags/1.0.8.1 8 8 9 9 Create a wiki as easily as adding a post … … 88 88 89 89 == Upgrade Notice == 90 Up the version to work with update plugin. 90 * Improve History tab 91 * Make easier to change wiki slugs 91 92 92 93 == Changelog == 94 95 = 1.0.8.1 = 96 * Improve History tab 97 * Make easier to change wiki slugs 93 98 94 99 = 1.0.7 = -
wordpress-wiki-plugin/trunk/wordpress-wiki-plugin.php
r475717 r780163 6 6 Author: S H Mohanjith (Incsub) 7 7 WDP ID: 225 8 Version: 1.0.8 8 Version: 1.0.8.1 9 9 Stable tag: trunk 10 10 Author URI: http://premium.wpmudev.org … … 29 29 * @var string $current_version Current version 30 30 */ 31 var $current_version = '1.0.8 ';31 var $current_version = '1.0.8.1'; 32 32 /** 33 33 * @var string $translation_domain Translation domain … … 85 85 add_action('template_redirect', array(&$this, 'load_templates') ); 86 86 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); 88 88 add_filter('name_save_pre', array(&$this, 'name_save')); 89 89 // add_filter('the_content', array(&$this, 'the_content')); … … 527 527 // If we're comparing a revision to itself, redirect to the 'view' page for that revision or the edit page for that post 528 528 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'; 531 530 break; 532 531 }
Note: See TracChangeset
for help on using the changeset viewer.