Plugin Directory

Changeset 1497068


Ignore:
Timestamp:
09/16/2016 05:30:42 PM (10 years ago)
Author:
123teru321
Message:

v1.2.6

Location:
cfiltering/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • cfiltering/trunk/collaborative-filtering.php

    r1497067 r1497068  
    55  Description: Recommendation plugin using collaborative filtering
    66  Author: 123teru321
    7   Version: 1.2.5
     7  Version: 1.2.6
    88  Author URI: http://technote.space/
    99  Text Domain: CollaborativeFiltering
     
    2727
    2828//plugin version
    29 define( 'COLLABORATIVE_FILTERING_PLUGIN_VERSION', '1.2.5' );
     29define( 'COLLABORATIVE_FILTERING_PLUGIN_VERSION', '1.2.6' );
    3030
    3131//plugin file name
  • cfiltering/trunk/lib/common/040-db.php

    r1497067 r1497068  
    518518        foreach ( $this->table_defines as $signature => $data ) {
    519519            $table = $this->get_table( $signature );
    520             $sql = "DROP TABLE IS EXISTS $table";
     520            $sql = "DROP TABLE IF EXISTS $table";
    521521            $this->execute( $sql, null, $signature, __FILE__, __LINE__ );
    522522        }
  • cfiltering/trunk/readme.txt

    r1497067 r1497068  
    44Requires at least: 3.9.13
    55Tested up to: 4.6.1
    6 Stable tag: 1.2.5
     6Stable tag: 1.2.6
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3030
    3131== Changelog ==
     32
     33= 1.2.6 =
     34* 2016-09-17  Small bug fix
    3235
    3336= 1.2.5 =
  • cfiltering/trunk/update.json

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