From 559e18917c145b0cef951355f9ded9fc6e5df616 Mon Sep 17 00:00:00 2001
From: M Miller <miller.2676@osu.edu>
Date: Fri, 15 Jun 2018 11:46:03 -0700
Subject: [PATCH] remove readonly attribute

---
 src/Form/ModuleConfigurationForm.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/Form/ModuleConfigurationForm.php b/src/Form/ModuleConfigurationForm.php
index 44dcda9..2681730 100644
--- a/src/Form/ModuleConfigurationForm.php
+++ b/src/Form/ModuleConfigurationForm.php
@@ -58,11 +58,10 @@ class ModuleConfigurationForm extends ConfigFormBase {
     $form['basic']['site_name'] = array(
       '#type' => 'textfield',
       '#title' => $this->t('Site Name'),
-      '#description' => $this->t('READ ONLY for now until this app is done. Main name for the site - it should be your college, department or organization name.'),
+      '#description' => $this->t('Main name for the site - it should be your college, department or organization name.'),
       '#size' => '60',
       '#maxlength' => '75',
       '#default_value' => $site_name,
-      '#attributes' => array('readonly' => 'readonly'),
     );
     
     $form['basic']['admin_link'] = array(
-- 
GitLab