Changeset 3469609
- Timestamp:
- 02/25/2026 04:22:39 PM (4 weeks ago)
- Location:
- polldaddy/trunk
- Files:
-
- 2 edited
-
polldaddy.php (modified) (5 diffs)
-
readme.txt (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
polldaddy/trunk/polldaddy.php
r3379021 r3469609 1 1 <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName 2 2 /** 3 * Plugin Name: Crowdsignal Polls & Ratings3 * Plugin Name: Crowdsignal Dashboard - Polls, Surveys & more 4 4 * Plugin URI: https://wordpress.org/plugins/polldaddy/ 5 5 * Description: Create and manage Crowdsignal polls and ratings in WordPress 6 6 * Author: Automattic, Inc. 7 7 * Author URL: https://crowdsignal.com/ 8 * Version: 3.1. 48 * Version: 3.1.5 9 9 * Text Domain: polldaddy 10 10 * Domain Path: /languages 11 * License: GPL-2.0+ 12 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt 11 13 */ 12 14 … … 175 177 die(); 176 178 } 177 add_action( 'wp_enqueue_scripts', array( &$this, 'register_polldaddy_styles' ) );178 179 add_action( 'admin_enqueue_scripts', array( &$this, 'menu_alter' ) ); 179 180 … … 2358 2359 $style->css = substr( $style->css, $start ); 2359 2360 2360 $style->css = addslashes( $style->css );2361 2362 2361 $preload_style_id = 0; 2363 2362 $preload_style = null; … … 2380 2379 $preload_style->css = substr( $preload_style->css, $start ); 2381 2380 2382 $style->css = addslashes( $preload_style->css );2381 $style->css = $preload_style->css; 2383 2382 } 2384 2383 2385 2384 $this->print_errors(); 2386 2385 2387 echo '<script language="javascript">var CSSXMLString = "' . $style->css .'";</script>';2386 echo '<script language="javascript">var CSSXMLString = ' . wp_json_encode( $style->css ) . ';</script>'; 2388 2387 ?> 2389 2388 … … 3646 3645 echo "<p>" . sprintf( 3647 3646 /* 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" 3650 3649 ) . "</p>"; 3651 3650 } -
polldaddy/trunk/readme.txt
r3379021 r3469609 1 1 === Crowdsignal Dashboard - Polls, Surveys & more === 2 2 Contributors: donncha, ice9js, cgastrell, digitalwaveride, jcheringer 3 Tags: crowdsignal, polls, poll, polldaddy, wppolls, vote, polling, surveys, rate, rating, ratings3 Tags: polls, vote, polling, surveys, rating 4 4 Requires at least: 5.5 5 5 Requires PHP: 5.6 6 Tested up to: 6.8 7 Stable tag: 3.1.4 6 Tested up to: 6.9 7 Stable tag: 3.1.5 8 License: GPL-2.0+ 9 License URI: https://www.gnu.org/licenses/gpl-2.0.txt 10 11 == Short Description == 12 Manage your Crowdsignal polls, surveys, quizzes, and ratings directly from the WordPress dashboard. 8 13 9 14 == Description == … … 67 72 = Where are my ratings? = 68 73 69 Check that footer.php in your theme calls the wp_footer action. The rating javascript is loaded on this action. 74 Check that footer.php in your theme calls the wp_footer action. The rating javascript is loaded on this action. 70 75 71 76 More info [here](http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks) … … 96 101 97 102 == 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 98 107 99 108 = 3.1.4 = … … 138 147 = 3.0.9 = 139 148 * Prevent warnings due to by-ref arguments 140 * Improve renderer syntax 149 * Improve renderer syntax 141 150 142 151 = 3.0.8 = … … 296 305 * On MU sites use blog_public blog option. 297 306 * Removed deprecated warnings, props @Till 298 *299 300 307 301 308 = 2.0.19 = … … 338 345 * Fix for CSS bug on admin pages with WordPress 3.3 339 346 * 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 341 348 342 349 = 2.0.11 = 343 350 * 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 345 352 346 353 = 2.0.10 = … … 397 404 * Fixed layout issues when viewing plugin in iframe/popup 398 405 * 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 400 407 401 408 = 1.8.10 = … … 502 509 = 1.4 = 503 510 * Added new poll styles selector 504 511 505 512 = 1.3 = 506 513 * Added Close/Open poll to poll actions
Note: See TracChangeset
for help on using the changeset viewer.