Plugin Directory

Changeset 531382


Ignore:
Timestamp:
04/15/2012 01:30:29 PM (14 years ago)
Author:
tosend.it
Message:

Version 1.1.1 released

Location:
simple-poll
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • simple-poll/tags/1.1.1/readme.txt

    r531381 r531382  
    44Requires at least: 3.3
    55Tested up to: 3.3.1
    6 Stable tag: 1.1.0
     6Stable tag: 1.1.1
    77
    88Plugin that allow admin to create infinite polls and registered users to express just one preference per poll.
     
    5353== Changelog ==
    5454
     55= 1.1.1 (2012-04-15) =
     56* Bugfix: the list of polls does not show anymore the number of preferences
     57
    5558= 1.1.0 (2012-04-15) =
    5659* New: on each poll is available the list of the voters
  • simple-poll/tags/1.1.1/toSendIt-SimplePoll.php

    r531381 r531382  
    22/**
    33 * @package Simple Polls
    4  * @version 1.1.0
     4 * @version 1.1.1
    55 */
    66/*
     
    99Description: Plugin that allow admin to create infinite polls and registered users to express just one preference per poll.
    1010Author: toSend.it di Luisa Mara
    11 Version: 1.1.0
     11Version: 1.1.1
    1212Author URI: http://tosend.it
    1313*/
     
    306306                       
    307307                        foreach($results as $row){
    308                             $sql = "select count(id) from $rates where poll_id = $row->id";
     308                            $sql = "select count(id) from $tableRates where poll_id = $row->id";
    309309                            $rating = $wpdb->get_var($sql, 0,0);
    310310                            ?>
  • simple-poll/trunk/readme.txt

    r531381 r531382  
    44Requires at least: 3.3
    55Tested up to: 3.3.1
    6 Stable tag: 1.1.0
     6Stable tag: 1.1.1
    77
    88Plugin that allow admin to create infinite polls and registered users to express just one preference per poll.
     
    5353== Changelog ==
    5454
     55= 1.1.1 (2012-04-15) =
     56* Bugfix: the list of polls does not show anymore the number of preferences
     57
    5558= 1.1.0 (2012-04-15) =
    5659* New: on each poll is available the list of the voters
  • simple-poll/trunk/toSendIt-SimplePoll.php

    r531381 r531382  
    22/**
    33 * @package Simple Polls
    4  * @version 1.1.0
     4 * @version 1.1.1
    55 */
    66/*
     
    99Description: Plugin that allow admin to create infinite polls and registered users to express just one preference per poll.
    1010Author: toSend.it di Luisa Mara
    11 Version: 1.1.0
     11Version: 1.1.1
    1212Author URI: http://tosend.it
    1313*/
     
    306306                       
    307307                        foreach($results as $row){
    308                             $sql = "select count(id) from $rates where poll_id = $row->id";
     308                            $sql = "select count(id) from $tableRates where poll_id = $row->id";
    309309                            $rating = $wpdb->get_var($sql, 0,0);
    310310                            ?>
Note: See TracChangeset for help on using the changeset viewer.