Thanks to M0TAZ for requesting this option, if you have lots of QSOs on a fresh install, use this function to mark all QSOs as uploaded to eQSL when you manually upload ADIF to eQSL.
		
			
				
	
	
		
			34 行
		
	
	
		
			无行尾
		
	
	
		
			1,007 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			34 行
		
	
	
		
			无行尾
		
	
	
		
			1,007 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!-- Display Success -->
 | |
| <?php if($this->session->flashdata('success') != '') { ?>
 | |
| <div class="alert alert-success" role="alert">
 | |
|         <?php echo $this->session->flashdata('success'); ?>
 | |
| </div>
 | |
| <?php } ?>
 | |
| 
 | |
| <!-- Display Notices -->
 | |
| <?php if($this->session->flashdata('notice') != '') { ?>
 | |
| <div class="alert alert-info" role="alert">
 | |
|         <?php echo $this->session->flashdata('notice'); ?>
 | |
| </div>
 | |
| <?php } ?>
 | |
| 
 | |
| <!-- Display Warnings -->
 | |
| <?php if($this->session->flashdata('warning') != '') { ?>
 | |
| <div class="alert alert-warning" role="alert">
 | |
|         <?php echo $this->session->flashdata('warning'); ?>
 | |
| </div>
 | |
| <?php } ?>
 | |
| 
 | |
| <!-- Display Errors -->
 | |
| <?php if($this->session->flashdata('error') != '') { ?>
 | |
| <div class="alert alert-danger" role="alert">
 | |
|         <?php echo $this->session->flashdata('error'); ?>
 | |
| </div>
 | |
| <?php } ?>
 | |
| 
 | |
| <!-- Display form validation errors -->
 | |
| <?php if(validation_errors()) { ?>
 | |
| <div class="alert alert-danger" role="alert">
 | |
|         <?php echo validation_errors(); ?>
 | |
| </div>
 | |
| <?php } ?>
 |