From 75fe6b6c0ae85d2b53cb803d5b028b050fd6d454 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 11 Oct 2005 19:44:35 +0000 Subject: - Patch #33752 by chx, adrian, et al: another batch of form API changes/fixes. --- includes/unicode.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/unicode.inc') diff --git a/includes/unicode.inc b/includes/unicode.inc index ce6ba32ac..3508aad64 100644 --- a/includes/unicode.inc +++ b/includes/unicode.inc @@ -81,7 +81,7 @@ function unicode_settings() { $options = array(UNICODE_SINGLEBYTE => t('Standard PHP: operations on Unicode strings are emulated on a best-effort basis. Install the PHP mbstring extension for improved Unicode support.', array('%url' => 'http://www.php.net/mbstring')), UNICODE_MULTIBYTE => t('Multi-byte: operations on Unicode strings are supported through the PHP mbstring extension.', array('%url' => 'http://www.php.net/mbstring')), UNICODE_ERROR => t('Invalid: the current configuration is incompatible with Drupal.')); - $form['settings'] = array(type => 'item', title =>t('String handling method'), value => $options[$status]); + $form['settings'] = array('#type' => 'item', '#title' =>t('String handling method'), '#value' => $options[$status]); return $form; } -- cgit v1.2.3