Plugin Directory

Changeset 1158127


Ignore:
Timestamp:
05/11/2015 06:19:33 PM (11 years ago)
Author:
SivaDu
Message:

update to 0.2.1

Location:
anylink/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • anylink/trunk/anyLink.php

    r954161 r1158127  
    33Plugin Name: anyLink
    44Plugin URI: http://dudo.org/anylink
    5 Description: anyLink is an external links management tool. It help you to covert all the external links in your posts into internal links automatically. It can prevent the website weight flow outside to others. It's absolutely SEO friendly.
    6 Version: 0.2
     5Anylink 是一款链接转换插件,它可以把长链接转换成短链接,也可以将外部链接转换成内部链接,同时还可以隐藏真实的链接地址。Anylink针对搜索引擎进行了专门的SEO处理,可以有效防止网站权重对外传递。同时它不会修改wordpress自带的数据库,也不会修改文章中的任何内容,无论什么时候都不会影响到你数据的完整性。是同类软件中安全性较高、方便灵活的轻量级软件。
     6Version: 0.2.1
    77Author: dudo
    88Author URI: http://dudo.org/about
  • anylink/trunk/classes/al_filter.php

    r954161 r1158127  
    4545        array_shift( $matches );
    4646        //only replace the links which have slugs, or return the original URL
     47        //Since 0.2.1
     48        //UEditor神经病,会把wordpress已经转义的&再还原成&,导致字符串比较出现问题,因此要再再次还原
     49        if(function_exists('enable_ueditor') && strpos($matches['URL'],'&') !== false){
     50            $matches['URL'] = str_replace('&','&',$matches['URL']);
     51        }
    4752        if( array_key_exists( $matches['URL'], $U2S ) ) {
    4853            $matches['URL'] = $U2S[$matches['URL']];
  • anylink/trunk/functions.php

    r954185 r1158127  
    7676        $charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
    7777        if( ! empty( $wpdb->collate ) )
    78         $charset_collate .= " COLLATE $wpdb -> collate";
     78        $charset_collate = $charset_collate . " COLLATE $wpdb->collate";
    7979    }
    8080    $sqlAnylnk = "CREATE TABLE " . ANYLNK_DBTB . " (
  • anylink/trunk/readme.txt

    r954161 r1158127  
    44Tags: seo, link sanitize, covert external links to internal links
    55Requires at least: 3.4
    6 Tested up to: 3.9
    7 Stable tag: 0.2
     6Tested up to: 4.2.2
     7Stable tag: 0.2.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1212
    1313== Description ==
     14
     15Anylink 是一款链接转换插件,它可以把长链接转换成短链接,也可以将外部链接转换成内部链接,同时还可以隐藏真实的链接地址。它不会修改wordpress自带的数据库,也不会修改文章中的任何内容,无论什么时候都不会影响到你数据的完整性。是同类软件中安全性较高、方便灵活的轻量级软件。
    1416
    1517Anylink allows you to covert the external links in your Wordpress to internal links. Of course, it's automatically. It's advantage
     
    4143
    4244== Changelog ==
     45
     46= 0.2.1=
     47*   修复了使用第三方编辑器(如 UEditor)时造成的链接不能转换问题
     48*   修复了在PHP5.5下出现的代码中断问题
    4349
    4450= 0.2 =
Note: See TracChangeset for help on using the changeset viewer.