Remove unused test method from Adif controller

Deleted the test() method from Adif.php as it was not used and contained only temporary validation code.
pull/3320/head
Peter Goodhall 2025-08-13 15:58:04 +01:00
rodzic 4ef4faad2e
commit 98ef3d8d83
1 zmienionych plików z 0 dodań i 10 usunięć

Wyświetl plik

@ -13,16 +13,6 @@ class adif extends CI_Controller {
if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
}
public function test() {
if(validateADIFDate('20120228') == true){
echo "valid date";
} else {
echo "date incorrect";
}
}
/* Shows Export Views */
public function export() {