Changeset 2556754
- Timestamp:
- 07/01/2021 06:34:45 AM (5 years ago)
- Location:
- ticketrilla/trunk
- Files:
-
- 3 edited
-
includes/class-table-helper.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
templates/product-settings-form.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ticketrilla/trunk/includes/class-table-helper.php
r2551216 r2556754 91 91 echo '<tr>'; 92 92 foreach ( $this->get_columns() as $key => $value ) { 93 echo "<td>" . wp_kses_post( $this->get_col( $key, $value, $data, $iteration )) . "</td>";93 echo "<td>" . $this->get_col( $key, $value, $data, $iteration ) . "</td>"; 94 94 } 95 95 echo '</tr>'; -
ticketrilla/trunk/readme.txt
r2551216 r2556754 4 4 Tags: ticket system, ticket, helpdesk, support, license, envato licensing, support system, support center 5 5 Requires at least: 4.9.1 6 Tested up to: 5. 5.17 Stable tag: trunk6 Tested up to: 5.7.2 7 Stable tag: 1.1.0 8 8 Requires PHP: 7.2 9 9 License: GPLv2 or later -
ticketrilla/trunk/templates/product-settings-form.php
r2551216 r2556754 19 19 <form class="form-horizontal ttlc-product-settings-form"> 20 20 <input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce( 'ttlc_product_save_' . $product->slug ); ?>"> 21 <input type="hidden" name="_product_uniqid" value="<?php echo esc_attr( $ server_product_uniqid); ?>">21 <input type="hidden" name="_product_uniqid" value="<?php echo esc_attr( $data['product_uniqid'] ); ?>"> 22 22 <?php if ( isset( $product->id) ) { ?> 23 23 <input type="hidden" name="id" value="<?php echo esc_attr( $product->id ); ?>">
Note: See TracChangeset
for help on using the changeset viewer.