diff --git a/pandora_console/godmode/setup/license.php b/pandora_console/godmode/setup/license.php index 522ae0eb19..1e428668f3 100644 --- a/pandora_console/godmode/setup/license.php +++ b/pandora_console/godmode/setup/license.php @@ -59,23 +59,27 @@ $table->data = array (); $table->data[0][0] = ''.__('Customer key').''; $table->data[0][1] = html_print_input_text ('keys[customer_key]', $settings->customer_key, '', 81, 255, true); -$table->data[1][0] = ''.__('Expires').''; -$table->data[1][1] = html_print_input_text('expires', $license['expiry_date'], '', 10, 255, true, true); +$table->data[1][0] = ''.__('Company name').''; +$table->data[1][1] = html_print_input_text ('company', preg_replace('/0+$/', '', substr($settings->customer_key, 0, 12)), '', 81, 255, true); -$table->data[2][0] = ''.__('Platform Limit').''; -$table->data[2][1] = html_print_input_text('expires', $license['max_agents'], '', 10, 255, true, true); +$table->data[2][0] = ''.__('Expires').''; +$table->data[2][1] = html_print_input_text('expires', $license['expiry_date'], '', 10, 255, true, true); -$table->data[3][0] = ''.__('Current Platform Count').''; -$table->data[3][1] = html_print_input_text('expires', $license['agent_count'], '', 10, 255, true, true); +$table->data[3][0] = ''.__('Platform Limit').''; +$table->data[3][1] = html_print_input_text('expires', $license['max_agents'], '', 10, 255, true, true); -$table->data[4][0] = ''.__('License Mode').''; -$table->data[4][1] = html_print_input_text('expires', $license['license_mode'], '', 10, 255, true, true); +$table->data[4][0] = ''.__('Current Platform Count').''; +$table->data[4][1] = html_print_input_text('expires', $license['agent_count'], '', 10, 255, true, true); + +$table->data[5][0] = ''.__('License Mode').''; +$table->data[5][1] = html_print_input_text('expires', $license['license_mode'], '', 10, 255, true, true); html_print_table ($table); if (enterprise_installed()) { echo '
'; }