Changeset 3218015
- Timestamp:
- 01/06/2025 11:02:28 PM (15 months ago)
- Location:
- imagemeta/trunk
- Files:
-
- 2 edited
-
imagemeta.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
imagemeta/trunk/imagemeta.php
r2423813 r3218015 4 4 Plugin URI: http://wordpress.org/plugins/imagemeta/ 5 5 Description: The fastest way to manage meta-data for your wordpress images. 6 Version: 1.1. 26 Version: 1.1.3 7 7 Author: era404 8 8 Author URI: http://www.era404.com … … 69 69 70 70 //handle deleting images 71 if(isset($_GET['cleanup']) && strstr($_GET['cleanup'],"|")){ list($cwpp,$cwppm) = explode("|",(string) trim($_GET['cleanup'])); 71 if(isset($_GET['cleanup']) && strstr($_GET['cleanup'],"|")){ 72 list($cwpp,$cwppm) = explode("|",(string) trim(strip_tags($_GET['cleanup']))); 72 73 } else { $cwpp = 0; $cwppm = 0; } 73 if(isset($_GET['remove']) && is_numeric($_GET['remove']) && $_GET['remove']>0) list($cwpp,$cwppm) = cleanup($_GET['remove']); 74 74 if(isset($_GET['remove']) && is_numeric($_GET['remove']) && $_GET['remove']>0){ 75 list($cwpp,$cwppm) = cleanup(strip_tags($_GET['remove'])); 76 } 77 75 78 //handle sorting 76 79 $sorting = array("d"=>"post_date ASC", … … 402 405 * updatedb: update the meta properties for the image 403 406 **************************************************************************************************/ 404 function ajax_updatedb() {407 function ajax_updatedb(){ 405 408 global $wpdb; 406 409 -
imagemeta/trunk/readme.txt
r2423813 r3218015 53 53 54 54 == Changelog == 55 = 1.1.3 = 56 * Additional sanitizing of API calls. Tested on WordPress 6.7.1; 55 57 56 58 = 1.1.2 =
Note: See TracChangeset
for help on using the changeset viewer.