Changeset 10467 for sites/trunk/wordpress.tv/public_html/wp-content/themes/wptv2/plugins/wordpresstv-anon-upload/anon-upload.php
- Timestamp:
- 11/25/2020 05:27:18 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.tv/public_html/wp-content/themes/wptv2/plugins/wordpresstv-anon-upload/anon-upload.php
r9978 r10467 32 32 'wptv_email', 33 33 'wptv_language', 34 'wptv_date', 34 35 'post_category', // 'wptv_categories', 35 36 'wptv_producer_username', … … 304 305 $language = $this->sanitize_text( $_posted['wptv_language'] ); 305 306 $slides = $this->sanitize_text( $_posted['wptv_slides_url'] ); 307 $recorded = $this->sanitize_tett( $_posted['wptv_date'] ); 306 308 $ip = $_SERVER['REMOTE_ADDR']; 307 309 … … 329 331 'slides' => $slides, 330 332 'ip' => $ip, 333 'recorded' => $recorded, 331 334 ); 332 335 … … 472 475 </p> 473 476 </div> 477 478 <?php if ( !empty( $meta['recorded'] ) ) : ?> 479 <div class="row"> 480 <p class="label">Date Recorded:</p> 481 <p class="data"> 482 <input type="text" value="<?php echo esc_attr( $meta['recorded'] ); ?>"/> 483 </p> 484 </div> 485 <?php endif; ?> 474 486 475 487 <div class="row">
Note: See TracChangeset
for help on using the changeset viewer.