Changeset 3089885
- Timestamp:
- 05/21/2024 06:03:19 AM (23 months ago)
- Location:
- ce21-suite
- Files:
-
- 3 edited
- 3 copied
-
tags/2.1.8 (copied) (copied from ce21-suite/trunk)
-
tags/2.1.8/README.txt (copied) (copied from ce21-suite/trunk/README.txt) (1 diff)
-
tags/2.1.8/single-sign-on-ce21.php (copied) (copied from ce21-suite/trunk/single-sign-on-ce21.php)
-
trunk/README.txt (modified) (1 diff)
-
trunk/programs/ce21-programs-settings-page.php (modified) (1 diff)
-
trunk/single-sign-on-ce21.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ce21-suite/tags/2.1.8/README.txt
r3089862 r3089885 4 4 Tags: virtual event services, education online courses, hybrid conference 5 5 Requires at least: 4.0 6 Tested up to: 6. 56 Tested up to: 6.1 7 7 Stable tag: 2.1.8 8 8 Requires PHP: 5.4 -
ce21-suite/trunk/README.txt
r3089862 r3089885 5 5 Requires at least: 4.0 6 6 Tested up to: 6.5 7 Stable tag: 2.1. 87 Stable tag: 2.1.9 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later -
ce21-suite/trunk/programs/ce21-programs-settings-page.php
r2843982 r3089885 134 134 <option value="11">Publish Date</option> 135 135 <option value="31">Program Date</option> 136 <option value="21">Media type</option>137 136 <option value="41">Title</option> 138 137 </select> -
ce21-suite/trunk/single-sign-on-ce21.php
r3089862 r3089885 16 16 * Plugin URI: https://www.ce21.com 17 17 * Description: CE21 Suite. 18 * Version: 2.1. 818 * Version: 2.1.9 19 19 * Author: CE21 20 20 * Author URI: https://www.ce21.com … … 514 514 if (isset( $_POST['post_type']) ) { 515 515 $values_to_save = array(); 516 $new_values = $_POST["_post_authentication_custom_metabox_ce21"]; 517 518 if (!empty($new_values)) { 519 foreach($new_values as $new_value ) { 520 $values_to_save[] = $new_value ; 521 } 516 if(isset($_POST["_post_authentication_custom_metabox_ce21"]) and !empty($_POST["_post_authentication_custom_metabox_ce21"])){ 517 $new_values = $_POST["_post_authentication_custom_metabox_ce21"]; 518 519 if (!empty($new_values)) { 520 foreach($new_values as $new_value ) { 521 $values_to_save[] = $new_value ; 522 } 523 } 524 update_post_meta( $post_id, '_post_authentication_custom_metabox_ce21',$values_to_save ); 522 525 } 523 update_post_meta( $post_id, '_post_authentication_custom_metabox_ce21',$values_to_save );524 526 } 525 527 } catch (Exception $e){
Note: See TracChangeset
for help on using the changeset viewer.