Plugin Directory

Changeset 1564322


Ignore:
Timestamp:
12/29/2016 01:34:47 PM (9 years ago)
Author:
RPG84
Message:
  • Small fix because MariaDB is causing issues around double quotes
  • Small fix that will auto select the page amount on your front page of you website when your store option matches one of the default options
Location:
tradetracker-store
Files:
70 added
3 edited

Legend:

Unmodified
Added
Removed
  • tradetracker-store/trunk/Tradetracker-Store.php

    r1557838 r1564322  
    33* Plugin Name: Tradetracker-Store
    44* Plugin URI: http://wpaffiliatefeed.com
    5 * Version: 4.6.32
     5* Version: 4.6.33
    66* Description: A Plugin that will add a TradeTracker affiliate feed to your site with several options to choose from.
    77* Author: Robert Braam
  • tradetracker-store/trunk/front.php

    r1557838 r1564322  
    196196function show_ttuserpages($winkelvol)
    197197{
     198    global $wpdb;
     199    global $ttstoremultitable;
    198200    if(isset($_GET['ipp'])){
    199201        if(is_numeric($_GET['ipp']) && $_GET['ipp'] > "0"){
    200202            $itemsperpage = $_GET['ipp'];
    201203        } else {
    202             $itemsperpage = "0";
     204            $itemsperpage = $wpdb->get_var( "SELECT multipageamount FROM $ttstoremultitable where id='".$winkelvol."';"  );
    203205        }
    204206    } else {
    205         $itemsperpage = "0";
     207            $itemsperpage = $wpdb->get_var( "SELECT multipageamount FROM $ttstoremultitable where id='".$winkelvol."';"  );
    206208    }
    207209    $userperpage = "<form action=\"\" method=\"get\" class=\"itemsperpage\" name=\"itemsperpage\" >";
  • tradetracker-store/trunk/readme.txt

    r1557838 r1564322  
    55Requires at least: 4
    66Tested up to: 4.7
    7 Stable tag: 4.6.32
     7Stable tag: 4.6.33
    88
    99A plugin that lets you import an XML productfeed from TradeTracker.
     
    4343== Changelog ==
    4444= 4.6.32 =
     45- Small fix because MariaDB is causing issues around double quotes
     46- Small fix that will auto select the page amount on your front page of you website when your store option matches one of the default options 
     47
     48= 4.6.32 =
    4549- Small fix to remove a SQL error when system things you selected a specific feed while you didn't
    4650
Note: See TracChangeset for help on using the changeset viewer.