Plugin Directory

Changeset 1503368


Ignore:
Timestamp:
09/27/2016 07:10:07 AM (10 years ago)
Author:
123teru321
Message:

1.3.0

Location:
cfiltering
Files:
111 added
5 edited

Legend:

Unmodified
Added
Removed
  • cfiltering/trunk/.htaccess

    r1503356 r1503368  
    1717</FilesMatch>
    1818
    19 #allow access to access
     19#allow access to ajax
    2020<FilesMatch "^ajax$">
    2121    Allow from all
  • cfiltering/trunk/collaborative-filtering.php

    r1503356 r1503368  
    55  Description: Recommendation plugin using collaborative filtering
    66  Author: 123teru321
    7   Version: 1.2.9
     7  Version: 1.3.0
    88  Author URI: http://technote.space/
    99  Text Domain: CollaborativeFiltering
     
    2727
    2828//plugin version
    29 define( 'COLLABORATIVE_FILTERING_PLUGIN_VERSION', '1.2.9' );
     29define( 'COLLABORATIVE_FILTERING_PLUGIN_VERSION', '1.3.0' );
    3030
    3131//plugin file name
  • cfiltering/trunk/lib/common/030-base-class.php

    r1503356 r1503368  
    6464                        return false;
    6565                    }
     66                    $ret = $default;
    6667                    break;
    6768                case "int":
     
    8081                            $ret = (int)$cf_option->get( self::$settings[$key]["option"], $default );
    8182                        }
     83                    } else {
     84                        $ret = $default;
    8285                    }
    8386                    break;
     
    97100                            $ret = (float)$cf_option->get( self::$settings[$key]["option"], $default );
    98101                        }
     102                    } else {
     103                        $ret = $default;
    99104                    }
    100105                    break;
  • cfiltering/trunk/readme.txt

    r1503356 r1503368  
    44Requires at least: 3.9.13
    55Tested up to: 4.6.1
    6 Stable tag: 1.2.9
     6Stable tag: 1.3.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3232
    3333== Changelog ==
     34
     35= 1.3.0 =
     36* 2016-09-27  Small bug fix
    3437
    3538= 1.2.9 =
  • cfiltering/trunk/update.json

    r1503356 r1503368  
    33  "slug": "cfiltering",
    44  "download_url": "https://github.com/123teru321/CFiltering/archive/master.zip",
    5   "version": "1.2.9",
     5  "version": "1.3.0",
    66  "tested": "4.6.1",
    77  "homepage": "https://technote.space/",
Note: See TracChangeset for help on using the changeset viewer.