Plugin Directory

Changeset 959659


Ignore:
Timestamp:
08/03/2014 07:31:43 PM (12 years ago)
Author:
sebwordpress
Message:

v2.7.9.5

Location:
the-welcomizer
Files:
199 added
4 edited

Legend:

Unmodified
Added
Removed
  • the-welcomizer/trunk/includes/twiz.class.php

    r959253 r959659  
    899899
    900900        // Twiz variable configuration
    901         $this->version    = '2.7.9.4';
     901        $this->version    = '2.7.9.5';
    902902        $this->cssVersion = '2-7-9-3';
    903903        $this->dbVersion  = '3.7.7';
  • the-welcomizer/trunk/includes/twiz.menu.class.php

    r957790 r959659  
    6060       
    6161        global $wpdb;
    62         $sql = "SELECT term_id as cat_ID, name as cat_name FROM ".$wpdb->terms." order by name";
     62        $sql = "SELECT t.term_id as cat_ID, t.name as cat_name FROM ".$wpdb->terms." t INNER JOIN ".$wpdb->term_taxonomy." tt on tt.term_id = t.term_id where tt.taxonomy = 'category' order by name";
     63       
    6364        $resultarray = $wpdb->get_results($sql, ARRAY_A);
    6465        $this->categories = $resultarray;
  • the-welcomizer/trunk/readme.txt

    r959253 r959659  
    44Requires at least: 3.1
    55Tested up to: 3.9.1
    6 Stable tag: 2.7.9.4
     6Stable tag: 2.7.9.5
    77License: GPLv2
    88
     
    4242
    4343== Changelog ==
     44
     45= 2.7.9.5 =
     46
     47* Fixed the categories results inside the output list.
    4448
    4549= 2.7.9.4 =
     
    13801384== Upgrade Notice ==
    13811385
     1386= 2.7.9.5 =
     1387
     1388Fixed the categories results inside the output list.
     1389
    13821390= 2.7.9.4 =
    13831391
  • the-welcomizer/trunk/twiz-index.php

    r959253 r959659  
    22/*
    33Plugin Name: The Welcomizer
    4 Version: 2.7.9.4
     4Version: 2.7.9.5
    55Plugin URI: http://www.sebastien-laframboise.com/wordpress/plugins-wordpress/the-welcomizer
    66Description: This plugin allows you to quickly animate your blog.
Note: See TracChangeset for help on using the changeset viewer.