mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
Fix convent_band -> convert_band typo
This commit is contained in:
parent
9604bf4a2f
commit
e3ceb8ba62
2 changed files with 2 additions and 2 deletions
|
|
@ -318,7 +318,7 @@ class QSO extends CI_Controller {
|
|||
|
||||
$this->load->library('frequency');
|
||||
|
||||
echo $this->frequency->convent_band($band, $mode);
|
||||
echo $this->frequency->convert_band($band, $mode);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ class Frequency {
|
|||
);
|
||||
|
||||
/* Class to convert band and mode into a frequency in a format based on the specifications of the database table */
|
||||
public function convent_band($band, $mode='SSB') {
|
||||
public function convert_band($band, $mode='SSB') {
|
||||
// Converting LSB and USB to SSB
|
||||
if($mode =='LSB' or $mode =='USB'){
|
||||
$mode= "SSB";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue