Skip to content
Snippets Groups Projects
Commit 27007c86 authored by Erick Hitter's avatar Erick Hitter
Browse files

Properly check timestamps exist before using them

parent 74de90be
No related branches found
No related tags found
No related merge requests found
......@@ -193,12 +193,12 @@ class ETH_Timeline {
?>
<p id="eth-timeline-startbox">
<label for="eth-timeline-start"><?php _e( 'Start:', 'eth-timeline' ); ?></label>
<input type="text" name="eth-timeline[start]" id="eth-timeline-start" class="regular-text" style="width: 11em;" value="<?php echo date( 'F j, Y', $times['start'] ); ?>" />
<input type="text" name="eth-timeline[start]" id="eth-timeline-start" class="regular-text" style="width: 11em;" value="<?php echo ! empty( $times['start'] ) ? date( 'F j, Y', $times['start'] ) : ''; ?>" />
</p>
<p id="eth-timeline-endbox">
<label for="eth-timeline-end"><?php _e( 'End:', 'eth-timeline' ); ?></label>
<input type="text" name="eth-timeline[end]" id="eth-timeline-end" class="regular-text" style="width: 11em;" value="<?php echo date( 'F j, Y', $times['end'] ); ?>" />
<input type="text" name="eth-timeline[end]" id="eth-timeline-end" class="regular-text" style="width: 11em;" value="<?php echo ! empty( $times['end'] ) ? date( 'F j, Y', $times['end'] ) : ''; ?>" />
</p>
<?php
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment