Changeset 6627
- Timestamp:
- 02/13/2018 08:14:11 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/multi-event-sponsors/views/metabox-regional-sponsorships.php
r623 r6627 13 13 <tbody> 14 14 <?php foreach ( $regions as $region ) : ?> 15 <tr> 15 <?php 16 // Some old regions are deprecated, but must remain in the system for back-compat. This prevents them from cluttering the UI when they're not needed. 17 $row_class = false !== stripos( $region->name, 'deprecated' ) && 'null' === $regional_sponsorships[ $region->term_id ] ? 'hidden' : ''; 18 ?> 19 20 <tr class="<?php echo esc_attr( $row_class ); ?>"> 16 21 <td> 17 22 <label for="mes_regional_sponsorships-<?php echo esc_attr( $region->term_id ); ?>">
Note: See TracChangeset
for help on using the changeset viewer.