HEX
Server: Apache
System: Linux webm010.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: alloesb (202139)
PHP: 8.3.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/alloesb/www/wp-content/plugins/totalpoll/includes/admin/editor/browse/submissions-item.php
<?php
if ( defined( 'ABSPATH' ) === false ) :
	exit;
endif; // Shhh
?>
<tr>
	<td scope="col" class="manage-column column active" data-tp-toggleable="submission-column-date">
		<?php

		if ( ! empty( $item['__submission_date'] ) ):
			echo esc_html( $item['__submission_date'] );
		else:
			_e( 'N/A', TP_TD );
		endif;

		?>
	</td>
	<?php foreach ( ( isset( $raw_fields ) ? $raw_fields : $this->poll->fields()->raw_fields() ) as $index => $field ): ?>
		<td scope="col" class="manage-column column <?php echo $index < 3 ? 'active' : ''; ?>" data-tp-toggleable="submission-column-<?php echo esc_attr( $field['name'] ); ?>">
			<?php

			if ( ! empty( $item[ $field['name'] ] ) ):
				echo esc_html( implode( ', ', (array) $item[ $field['name'] ] ) );
			else:
				_e( 'N/A', TP_TD );
			endif;

			?>
		</td>
	<?php endforeach; ?>
</tr>