mirror of
https://github.com/getnamingo/registry.git
synced 2025-05-14 00:27:03 +02:00
Fixed last places custom currency not showing
This commit is contained in:
parent
dd5aef123d
commit
c806bdc73f
3 changed files with 22 additions and 17 deletions
|
@ -431,7 +431,8 @@ class DapiController extends Controller
|
|||
'registrar_id' => 'ph.registrar_id',
|
||||
'description' => 'ph.description',
|
||||
'amount' => 'ph.amount',
|
||||
'registrar_name' => 'r.name'
|
||||
'registrar_name' => 'r.name',
|
||||
'currency' => 'r.currency'
|
||||
];
|
||||
|
||||
// --- SORTING ---
|
||||
|
@ -554,7 +555,8 @@ class DapiController extends Controller
|
|||
ph.date,
|
||||
ph.description,
|
||||
ph.amount,
|
||||
r.name AS registrar_name
|
||||
r.name AS registrar_name,
|
||||
r.currency
|
||||
";
|
||||
|
||||
$dataSql = "
|
||||
|
@ -597,7 +599,8 @@ class DapiController extends Controller
|
|||
'fromS' => 'st.fromS',
|
||||
'toS' => 'st.toS',
|
||||
'amount' => 'st.amount',
|
||||
'registrar_name' => 'r.name'
|
||||
'registrar_name' => 'r.name',
|
||||
'currency' => 'r.currency'
|
||||
];
|
||||
|
||||
// --- SORTING ---
|
||||
|
@ -724,7 +727,8 @@ class DapiController extends Controller
|
|||
st.fromS,
|
||||
st.toS,
|
||||
st.amount,
|
||||
r.name AS registrar_name
|
||||
r.name AS registrar_name,
|
||||
r.currency
|
||||
";
|
||||
|
||||
$dataSql = "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue