File tree 3 files changed +10
-10
lines changed
application/views/logbookadvanced
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 203
203
<th>Name</th>
204
204
<th>QSL Via</th>
205
205
<th>QSL</th>
206
- <?php if ($ this ->session ->userdata ('user_lotw_name ' ) != "" ){
207
- echo '<th class="lotwconfirmation">LoTW</th> ' ;
208
- } ?>
209
206
<?php if ($ this ->session ->userdata ('user_eqsl_name ' ) != "" ){
210
207
echo '<th class="eqslconfirmation">eQSL</th> ' ;
211
208
} ?>
209
+ <?php if ($ this ->session ->userdata ('user_lotw_name ' ) != "" ){
210
+ echo '<th class="lotwconfirmation">LoTW</th> ' ;
211
+ } ?>
212
212
<th>QSL Msg</th>
213
213
<th>DXCC</th>
214
214
<th>State</th>
Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ function updateRow(qso) {
27
27
cells . eq ( c ++ ) . text ( qso . name ) ;
28
28
cells . eq ( c ++ ) . text ( qso . qslVia ) ;
29
29
cells . eq ( c ++ ) . html ( qso . qsl ) ;
30
- if ( $ ( ".lotwconfirmation" ) [ 0 ] ) {
31
- cells . eq ( c ++ ) . html ( qso . lotw ) ;
32
- }
33
30
if ( $ ( ".eqslconfirmation" ) [ 0 ] ) {
34
31
cells . eq ( c ++ ) . html ( qso . eqsl ) ;
35
32
}
33
+ if ( $ ( ".lotwconfirmation" ) [ 0 ] ) {
34
+ cells . eq ( c ++ ) . html ( qso . lotw ) ;
35
+ }
36
36
cells . eq ( c ++ ) . text ( qso . qslMessage ) ;
37
37
cells . eq ( c ++ ) . text ( qso . dxcc ) ;
38
38
cells . eq ( c ++ ) . text ( qso . state ) ;
@@ -82,12 +82,12 @@ function loadQSOTable(rows) {
82
82
data . push ( qso . name ) ;
83
83
data . push ( qso . qslVia ) ;
84
84
data . push ( qso . qsl ) ;
85
- if ( $ ( ".lotwconfirmation" ) [ 0 ] ) {
86
- data . push ( qso . lotw ) ;
87
- }
88
85
if ( $ ( ".eqslconfirmation" ) [ 0 ] ) {
89
86
data . push ( qso . eqsl ) ;
90
87
}
88
+ if ( $ ( ".lotwconfirmation" ) [ 0 ] ) {
89
+ data . push ( qso . lotw ) ;
90
+ }
91
91
data . push ( qso . qslMessage ) ;
92
92
data . push ( qso . dxcc + ( qso . end == null ? '' : ' <span class="badge badge-danger">Deleted DXCC</span>' ) ) ;
93
93
data . push ( qso . state ) ;
Original file line number Diff line number Diff line change @@ -372,7 +372,7 @@ function getEqslString($data, $custom_date_format): string
372
372
$ eqslstring .= "\" data-toggle= \"tooltip \"" ;
373
373
}
374
374
375
- $ eqslstring .= ' class="eqsl- ' . (($ data ['COL_EQSL_QSL_SENT ' ] =='Y ' ) ? 'green ' :'red ' ) . '">▲</span><span ' ;
375
+ $ eqslstring .= ' class="eqsl- ' . (($ data ['COL_EQSL_QSL_SENT ' ] =='Y ' ) ? 'green ' :'red ' ) . '">▲</span><span ' ;
376
376
377
377
if ($ data ['COL_EQSL_QSL_RCVD ' ] == "Y " ) {
378
378
$ eqslstring .= "data-original-title= \"" .$ CI ->lang ->line ('eqsl_short ' )." " .$ CI ->lang ->line ('general_word_received ' );
You can’t perform that action at this time.
0 commit comments