From 958658aeae6b750d3c01c2cac5fabb619b4c5a72 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Sat, 4 Jan 2014 04:40:40 +0000 Subject: [PATCH] Add device key extensions to the device keys table. --- app/devices/app_config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/devices/app_config.php b/app/devices/app_config.php index 9d9d0003aa..142be962ae 100644 --- a/app/devices/app_config.php +++ b/app/devices/app_config.php @@ -369,6 +369,10 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the value.'; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'device_key_extension'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the extension.'; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'device_key_label'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Enter the label.';