Plugin Directory

Changeset 3469609


Ignore:
Timestamp:
02/25/2026 04:22:39 PM (4 weeks ago)
Author:
donncha
Message:

Release 3.1.5

Location:
polldaddy/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • polldaddy/trunk/polldaddy.php

    r3379021 r3469609  
    11<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
    22/**
    3  * Plugin Name: Crowdsignal Polls & Ratings
     3 * Plugin Name: Crowdsignal Dashboard - Polls, Surveys & more
    44 * Plugin URI: https://wordpress.org/plugins/polldaddy/
    55 * Description: Create and manage Crowdsignal polls and ratings in WordPress
    66 * Author: Automattic, Inc.
    77 * Author URL: https://crowdsignal.com/
    8  * Version: 3.1.4
     8 * Version: 3.1.5
    99 * Text Domain: polldaddy
    1010 * Domain Path: /languages
     11 * License:     GPL-2.0+
     12 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt
    1113 */
    1214
     
    175177            die();
    176178        }
    177         add_action( 'wp_enqueue_scripts', array( &$this, 'register_polldaddy_styles' ) );
    178179        add_action( 'admin_enqueue_scripts', array( &$this, 'menu_alter' ) );
    179180
     
    23582359            $style->css = substr( $style->css, $start );
    23592360
    2360         $style->css = addslashes( $style->css );
    2361 
    23622361        $preload_style_id = 0;
    23632362        $preload_style = null;
     
    23802379                $preload_style->css = substr( $preload_style->css, $start );
    23812380
    2382             $style->css = addslashes( $preload_style->css );
     2381            $style->css = $preload_style->css;
    23832382        }
    23842383
    23852384        $this->print_errors();
    23862385
    2387         echo '<script language="javascript">var CSSXMLString = "' . $style->css .'";</script>';
     2386        echo '<script language="javascript">var CSSXMLString = ' . wp_json_encode( $style->css ) . ';</script>';
    23882387?>
    23892388
     
    36463645            echo "<p>" . sprintf(
    36473646                /* translators: %s is the URL to Crowdsignal settings page */
    3648                 __( "Previous settings for ratings on this site discovered. You can restore them on the <a href='%s'>poll settings page</a> if your site is missing ratings after resetting your connection settings.", 'polldaddy' ), 
    3649                 "options-general.php?page=crowdsignal-settings" 
     3647                __( "Previous settings for ratings on this site discovered. You can restore them on the <a href='%s'>poll settings page</a> if your site is missing ratings after resetting your connection settings.", 'polldaddy' ),
     3648                "options-general.php?page=crowdsignal-settings"
    36503649            ) . "</p>";
    36513650        }
  • polldaddy/trunk/readme.txt

    r3379021 r3469609  
    11=== Crowdsignal Dashboard - Polls, Surveys & more ===
    22Contributors: donncha, ice9js, cgastrell, digitalwaveride, jcheringer
    3 Tags: crowdsignal, polls, poll, polldaddy, wppolls, vote, polling, surveys, rate, rating, ratings
     3Tags: polls, vote, polling, surveys, rating
    44Requires at least: 5.5
    55Requires PHP: 5.6
    6 Tested up to: 6.8
    7 Stable tag: 3.1.4
     6Tested up to: 6.9
     7Stable tag: 3.1.5
     8License: GPL-2.0+
     9License URI: https://www.gnu.org/licenses/gpl-2.0.txt
     10
     11== Short Description ==
     12Manage your Crowdsignal polls, surveys, quizzes, and ratings directly from the WordPress dashboard.
    813
    914== Description ==
     
    6772= Where are my ratings? =
    6873
    69 Check that footer.php in your theme calls the wp_footer action. The rating javascript is loaded on this action. 
     74Check that footer.php in your theme calls the wp_footer action. The rating javascript is loaded on this action.
    7075
    7176More info [here](http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks)
     
    96101
    97102== Changelog ==
     103
     104= 3.1.5 =
     105* fix: Improve output escaping in style editor #147
     106* Remove redundant hook with undefined function register_polldaddy_styles #125
    98107
    99108= 3.1.4 =
     
    138147= 3.0.9 =
    139148* Prevent warnings due to by-ref arguments
    140 * Improve renderer syntax 
     149* Improve renderer syntax
    141150
    142151= 3.0.8 =
     
    296305* On MU sites use blog_public blog option.
    297306* Removed deprecated warnings, props @Till
    298 *
    299 
    300307
    301308= 2.0.19 =
     
    338345* Fix for CSS bug on admin pages with WordPress 3.3
    339346* Add range of new languages to further localize the plugin
    340 * Updated the shortcodes to be better sanitized to prevent possibility of XSS 
     347* Updated the shortcodes to be better sanitized to prevent possibility of XSS
    341348
    342349= 2.0.11 =
    343350* Fix for CSS bug on admin pages with WordPress 3.3
    344 * Update Translation files from GlotPress to use 
     351* Update Translation files from GlotPress to use
    345352
    346353= 2.0.10 =
     
    397404* Fixed layout issues when viewing plugin in iframe/popup
    398405* Fixed bug in multiple choices dropdown
    399 * Fixed bug in updating style when updating all polls using that style 
     406* Fixed bug in updating style when updating all polls using that style
    400407
    401408= 1.8.10 =
     
    502509= 1.4 =
    503510* Added new poll styles selector
    504  
     511
    505512= 1.3 =
    506513* Added Close/Open poll to poll actions
Note: See TracChangeset for help on using the changeset viewer.