Changeset 2308022
- Timestamp:
- 05/19/2020 01:43:02 PM (6 years ago)
- Location:
- libsyn-podcasting/trunk
- Files:
-
- 5 edited
-
admin/lib/Libsyn.php (modified) (1 diff)
-
admin/lib/Libsyn/Service/Importer.php (modified) (2 diffs)
-
admin/lib/Libsyn/Service/Sanitize.php (modified) (2 diffs)
-
libsyn-podcasting.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libsyn-podcasting/trunk/admin/lib/Libsyn.php
r2302786 r2308022 4 4 protected $text_dom = LIBSYN_TEXT_DOMAIN; 5 5 protected $plugin_name = "Libsyn/Wordpress"; 6 protected $plugin_version = "1.2.2. 7";6 protected $plugin_version = "1.2.2.8"; 7 7 protected $api_table_name = "libsyn_podcast_plugin"; 8 8 protected $api_base_uri = "https://api.libsyn.com"; -
libsyn-podcasting/trunk/admin/lib/Libsyn/Service/Importer.php
r2302786 r2308022 220 220 $importer = new \Libsyn\Service\Importer(); 221 221 if ( isset($_POST['data']) ) { 222 $metaData = $sanitize->array ($_POST['data']);222 $metaData = $sanitize->arrays($_POST['data']); 223 223 $createPost = $importer->createPost( (object) $metaData ); 224 224 } else { … … 254 254 if ( isset($_POST['id']) && isset($_POST['data']) ) { 255 255 $post_id = $sanitize->numeric($_POST['id']); 256 $metaData = $sanitize->array ($_POST['data']);256 $metaData = $sanitize->arrays($_POST['data']); 257 257 if ( isset($_POST['show']) ) { 258 $apiShow = $sanitize->array ($_POST['show']);258 $apiShow = $sanitize->arrays($_POST['show']); 259 259 } else { 260 260 $apiShow = false; -
libsyn-podcasting/trunk/admin/lib/Libsyn/Service/Sanitize.php
r2303479 r2308022 279 279 280 280 /** 281 * array 281 * arrays 282 282 * Sanitize text field or array of text fields 283 283 * … … 287 287 * @return mixed 288 288 */ 289 public function array ( $array ) {289 public function arrays( $array ) { 290 290 if ( is_array($array) ) { 291 291 foreach ( $array as $key => &$value ) { 292 292 if ( is_array( $value ) ) { 293 $value = $this->array ($value);293 $value = $this->arrays($value); 294 294 } 295 295 else { -
libsyn-podcasting/trunk/libsyn-podcasting.php
r2302786 r2308022 4 4 Plugin URI: https://wordpress.org/plugins/libsyn-podcasting/ 5 5 Description: Post or edit Libsyn Podcast episodes directly through Wordpress. 6 Version: 1.2.2. 76 Version: 1.2.2.8 7 7 Author: Libsyn 8 8 Author URI: https://support.libsyn.com/kb/libsyn-publisher-hub/ -
libsyn-podcasting/trunk/readme.txt
r2302786 r2308022 5 5 Requires PHP: 5.4 6 6 Tested up to: 5.4.1 7 Stable tag: 1.2.2. 77 Stable tag: 1.2.2.8 8 8 License: GPLv3 or later 9 9 Author URI: https://support.libsyn.com/kb/libsyn-publisher-hub/ … … 46 46 == Changelog == 47 47 = 1.2.2.7 = 48 * Small bug fix for php > 5.6 compatibility. 49 50 = 1.2.2.7 = 48 51 * Some style sheet changes. 49 52 * Feed importer process changes.
Note: See TracChangeset
for help on using the changeset viewer.