Plugin Directory

Changeset 894217


Ignore:
Timestamp:
04/16/2014 11:15:50 AM (12 years ago)
Author:
hidaka.bizplugin
Message:

1.7.1

Location:
rss-antenna/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • rss-antenna/trunk/readme.txt

    r774888 r894217  
    33Donate link:
    44Tags: rss
    5 Requires at least: 3.4
    6 Tested up to: 3.6.1
    7 Stable tag: 1.7.0
     5Requires at least: 3.5
     6Tested up to: 3.8.3
     7Stable tag: 1.7.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3535
    3636== Changelog ==
     37
     38= 1.7.1 =
     39* マルチサイトに対応しました
    3740
    3841= 1.7.0 =
  • rss-antenna/trunk/rss-antenna.php

    r774888 r894217  
    44Plugin URI: http://residentbird.main.jp/bizplugin/
    55Description: Webサイトの更新情報をRSSから取得し更新日時の新しい順に一覧表示するプラグインです。
    6 Version: 1.7.0
     6Version: 1.7.1
    77Author:WordPress Biz Plugin
    88Author URI: http://residentbird.main.jp/bizplugin/
     
    375375            return null;
    376376        }
    377         if ( $options["cache_date"] != date( "Y/m/d", time()) ){
     377        if ( $options["cache_date"] != date_i18n( "Y/m/d") ){
    378378            RA::clear_cache_files();
    379379            RA::remove_cache_map($options);
     
    412412        $map[$url] = $img_url;
    413413        $options["cache_map"] = $map;
    414         $options["cache_date"] = date( "Y/m/d", time());
     414        $options["cache_date"] = date_i18n( "Y/m/d");
    415415        update_option(RssAntennaPlugin::OPTION_NAME, $options);
    416416    }
    417417
    418418    private function save_image_file($image){
     419        RA::create_cache_dir();
    419420        $filename = uniqid();
    420421        $upload_dir = RA::get_upload_dir();
Note: See TracChangeset for help on using the changeset viewer.