Browse Source

Forgot a comma at the end of an array entry

pull/739/head
dannylamb 5 years ago
parent
commit
a8e44c5010
  1. 2
      src/Form/IslandoraSettingsForm.php

2
src/Form/IslandoraSettingsForm.php

@ -87,7 +87,7 @@ class IslandoraSettingsForm extends ConfigFormBase {
'#type' => 'textfield',
'#title' => $this->t('JWT Expiry'),
'#default_value' => $config->get(self::JWT_EXPIRY),
'#description' => 'Eg: 60, "2 days", "10h", "7d". A numeric value is interpreted as a seconds count. If you use a string be sure you provide the time units (days, hours, etc), otherwise milliseconds unit is used by default ("120" is equal to "120ms").'
'#description' => 'Eg: 60, "2 days", "10h", "7d". A numeric value is interpreted as a seconds count. If you use a string be sure you provide the time units (days, hours, etc), otherwise milliseconds unit is used by default ("120" is equal to "120ms").',
];
$form[self::GEMINI_URL] = [

Loading…
Cancel
Save