Changeset 3254966
- Timestamp:
- 03/12/2025 06:23:31 PM (13 months ago)
- Location:
- listamester/trunk
- Files:
-
- 3 edited
-
includes/class-listamester.php (modified) (2 diffs)
-
listamester.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
listamester/trunk/includes/class-listamester.php
r3225538 r3254966 45 45 */ 46 46 public function shortcode( $atts ) { 47 $id = $ atts['id'];47 $id = $this->safe_input($atts['id']); 48 48 $mode = $atts['mode']; 49 49 $output = ''; … … 186 186 } 187 187 188 private function safe_input($x) { 189 if (!$x) return ''; 190 $ans = ''; 191 for ($i = 0; $i < strlen($x); $i++) { 192 $c = $x[$i]; 193 if (ctype_alnum($c)) $ans = $ans . $c; 194 } 195 return $ans; 196 } 197 188 198 /** 189 199 * Get resource. -
listamester/trunk/listamester.php
r3225538 r3254966 3 3 * Plugin Name: Listamester 4 4 * Description: Hírlevélküldő, email marketing szolgáltatás WordPress-hez 5 * Version: 2.3. 55 * Version: 2.3.6 6 6 * Author: Listamester 7 7 * Author URI: https://listamester.hu -
listamester/trunk/readme.txt
r3225538 r3254966 5 5 Tested up to: 6.7.1 6 6 Requires PHP: 7.4.0 7 Stable tag: 2.3. 57 Stable tag: 2.3.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.