mirror of
https://gitlab.com/ArkHost/WHMCS-ArkhostVPSAG.git
synced 2026-07-23 23:36:06 +02:00
add update OS/Package IDs
This commit is contained in:
@@ -471,7 +471,7 @@ function ArkhostVPSAG_ConfigOptions() {
|
||||
|
||||
foreach ($packageslist as $package) {
|
||||
$array['planid']['Options'] += array(
|
||||
$package['id'] => $package['name'] . ' (' . $package['price'] . '€)'
|
||||
$package['id'] => $package['id'] . ' | ' . $package['name'] . ' (' . $package['price'] . '€)'
|
||||
);
|
||||
}
|
||||
|
||||
@@ -483,7 +483,7 @@ function ArkhostVPSAG_ConfigOptions() {
|
||||
|
||||
foreach ($operatingSystems as $operatingSystem) {
|
||||
$array['osid']['Options'] += array(
|
||||
$operatingSystem['id'] => $operatingSystem['name']
|
||||
$operatingSystem['id'] => $operatingSystem['id'] . ' | ' . $operatingSystem['name']
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user