From d705251fd0c284649d79e9935568faa27adc32e9 Mon Sep 17 00:00:00 2001 From: nruest Date: Wed, 30 Apr 2014 08:03:00 -0400 Subject: [PATCH 1/2] Make multi-site users happy. --- includes/admin.form.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/admin.form.inc b/includes/admin.form.inc index 3dc97091..95a7025c 100644 --- a/includes/admin.form.inc +++ b/includes/admin.form.inc @@ -72,7 +72,7 @@ function islandora_repository_admin(array $form, array &$form_state) { '#default_value' => $restrict_namespaces, ), 'islandora_pids_allowed' => array( - '#type' => 'textfield', + '#type' => 'textarea' '#title' => t('PID namespaces allowed in this Drupal install'), '#description' => t('A list of PID namespaces, separated by spaces, that users are permitted to access from this Drupal installation.
This could be more than a simple namespace, e.g. demo:mydemos.
The namespace islandora: is reserved, and is always allowed.'), '#default_value' => variable_get('islandora_pids_allowed', 'default: demo: changeme: ilives: islandora-book: books: newspapers: '), From bc84c9912272a77f633d75df10237601ee8722cb Mon Sep 17 00:00:00 2001 From: nruest Date: Wed, 30 Apr 2014 09:00:19 -0400 Subject: [PATCH 2/2] syntax typo --- includes/admin.form.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/admin.form.inc b/includes/admin.form.inc index 95a7025c..9d0f6e7e 100644 --- a/includes/admin.form.inc +++ b/includes/admin.form.inc @@ -72,7 +72,7 @@ function islandora_repository_admin(array $form, array &$form_state) { '#default_value' => $restrict_namespaces, ), 'islandora_pids_allowed' => array( - '#type' => 'textarea' + '#type' => 'textarea', '#title' => t('PID namespaces allowed in this Drupal install'), '#description' => t('A list of PID namespaces, separated by spaces, that users are permitted to access from this Drupal installation.
This could be more than a simple namespace, e.g. demo:mydemos.
The namespace islandora: is reserved, and is always allowed.'), '#default_value' => variable_get('islandora_pids_allowed', 'default: demo: changeme: ilives: islandora-book: books: newspapers: '),