Changeset 1047338
- Timestamp:
- 12/17/2014 06:14:15 PM (11 years ago)
- Location:
- nextgen-gallery-voting
- Files:
-
- 34 added
- 2 edited
-
tags/2.7.6 (added)
-
tags/2.7.6/css (added)
-
tags/2.7.6/css/jquery-ui (added)
-
tags/2.7.6/css/jquery-ui/images (added)
-
tags/2.7.6/css/jquery-ui/images/animated-overlay.gif (added)
-
tags/2.7.6/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png (added)
-
tags/2.7.6/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png (added)
-
tags/2.7.6/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png (added)
-
tags/2.7.6/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png (added)
-
tags/2.7.6/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png (added)
-
tags/2.7.6/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png (added)
-
tags/2.7.6/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png (added)
-
tags/2.7.6/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png (added)
-
tags/2.7.6/css/jquery-ui/images/ui-icons_222222_256x240.png (added)
-
tags/2.7.6/css/jquery-ui/images/ui-icons_2e83ff_256x240.png (added)
-
tags/2.7.6/css/jquery-ui/images/ui-icons_454545_256x240.png (added)
-
tags/2.7.6/css/jquery-ui/images/ui-icons_888888_256x240.png (added)
-
tags/2.7.6/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png (added)
-
tags/2.7.6/css/jquery-ui/jquery-ui-1.10.3.custom.css (added)
-
tags/2.7.6/css/jquery-ui/jquery-ui-1.10.3.custom.min.css (added)
-
tags/2.7.6/css/star_rating.css (added)
-
tags/2.7.6/images (added)
-
tags/2.7.6/images/loading.gif (added)
-
tags/2.7.6/images/star.gif (added)
-
tags/2.7.6/images/thumbs_down.png (added)
-
tags/2.7.6/images/thumbs_up.png (added)
-
tags/2.7.6/js (added)
-
tags/2.7.6/js/admin_gallery.js (added)
-
tags/2.7.6/js/ajaxify-likes.js (added)
-
tags/2.7.6/js/ajaxify-stars.js (added)
-
tags/2.7.6/js/top-voted.js (added)
-
tags/2.7.6/ngg-voting.php (added)
-
tags/2.7.6/readme.txt (added)
-
tags/2.7.6/voting-types.php (added)
-
trunk/ngg-voting.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nextgen-gallery-voting/trunk/ngg-voting.php
r893145 r1047338 4 4 Plugin URI: http://shauno.co.za/wordpress/nextgen-gallery-voting/ 5 5 Description: This plugin allows you to add user voting and rating to NextGEN Galleries and Images 6 Version: 2.7. 56 Version: 2.7.6 7 7 Author: Shaun Alberts 8 8 Author URI: http://shauno.co.za … … 1186 1186 1187 1187 $qry .= ' GROUP BY v.pid, v.criteria_id'; 1188 $qry .= ' ORDER BY avg '.$ _GET['nggv']['order'].', num '.$_GET['nggv']['order'];1188 $qry .= ' ORDER BY avg '.$wpdb->escape($_GET['nggv']['order']).', num '.$wpdb->escape($_GET['nggv']['order']); 1189 1189 if($_GET['nggv']['limit']) { 1190 $qry .= ' LIMIT 0, '.$ _GET['nggv']['limit'];1190 $qry .= ' LIMIT 0, '.$wpdb->escape($_GET['nggv']['limit']); 1191 1191 } 1192 1192 -
nextgen-gallery-voting/trunk/readme.txt
r893145 r1047338 4 4 Tags: nextgen-gallery, nextgen, gallery, voting, rating, ratings, nextgen-gallery-voting 5 5 Requires at least: 2.9.1 6 Tested up to: 3.8.37 Stable tag: 2.7. 56 Tested up to: 4.0.1 7 Stable tag: 2.7.6 8 8 9 9 Adds the ability for users to vote and rate your NextGEN Images. Simple options give you the ability to limit who can vote on what. … … 77 77 78 78 == Changelog == 79 80 = 2.7.6 = 81 * Security patch to stop unauthorized access to certain features 79 82 80 83 = 2.7.5 = … … 230 233 == Upgrade Notice == 231 234 235 = 2.7.6 = 236 Security patch to stop unauthorized access to certain features 237 232 238 = 2.7.5 = 233 239 CSS fix for stopping numeric values of stars showing under certain conditions
Note: See TracChangeset
for help on using the changeset viewer.