Plugin Directory

Changeset 520167


Ignore:
Timestamp:
03/17/2012 12:44:52 PM (14 years ago)
Author:
tosend.it
Message:

Version 1.0.3 released

Location:
simple-poll
Files:
2 edited
3 copied

Legend:

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

    r520166 r520167  
    44Requires at least: 3.3
    55Tested up to: 3.3.1
    6 Stable tag: 1.0.2
     6Stable tag: 1.0.3
    77
    88Plugin that allow admin to create infinite polls and registered users to express just one preference per poll.
     
    5050* Bugfix: waring on invalid pattern in preg_split
    5151
     52= 1.0.3 (2012-03-17) =
     53* Bugfix: Used StdClass Object as associative array
     54
    5255== Upgrade Notice ==
    5356
  • simple-poll/tags/1.0.3/toSendIt-SimplePoll.php

    r520166 r520167  
    22/**
    33 * @package Simple Polls
    4  * @version 1.0.2
     4 * @version 1.0.3
    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.0.2
     11Version: 1.0.3
    1212Author URI: http://tosend.it
    1313*/
     
    238238                <ul>
    239239                    <?php
    240                     $answers = preg_split("/\n/", $row['answers']);
     240                    $answers = preg_split("/\n/", $row->answers);
    241241                    $sql_rates = "select answer_index, count(answer_index) voti from $rates where poll_id = $id group by answer_index";
    242242                    $results = $wpdb->get_results($sql_rates);
  • simple-poll/trunk/readme.txt

    r520166 r520167  
    44Requires at least: 3.3
    55Tested up to: 3.3.1
    6 Stable tag: 1.0.2
     6Stable tag: 1.0.3
    77
    88Plugin that allow admin to create infinite polls and registered users to express just one preference per poll.
     
    5050* Bugfix: waring on invalid pattern in preg_split
    5151
     52= 1.0.3 (2012-03-17) =
     53* Bugfix: Used StdClass Object as associative array
     54
    5255== Upgrade Notice ==
    5356
  • simple-poll/trunk/toSendIt-SimplePoll.php

    r520166 r520167  
    22/**
    33 * @package Simple Polls
    4  * @version 1.0.2
     4 * @version 1.0.3
    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.0.2
     11Version: 1.0.3
    1212Author URI: http://tosend.it
    1313*/
     
    238238                <ul>
    239239                    <?php
    240                     $answers = preg_split("/\n/", $row['answers']);
     240                    $answers = preg_split("/\n/", $row->answers);
    241241                    $sql_rates = "select answer_index, count(answer_index) voti from $rates where poll_id = $id group by answer_index";
    242242                    $results = $wpdb->get_results($sql_rates);
Note: See TracChangeset for help on using the changeset viewer.