summaryrefslogtreecommitdiff
path: root/includes/unicode.inc
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-01-17 05:42:21 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-01-17 05:42:21 +0000
commitc5eeccb43d415bc92947aada453dd1dd2ee411a4 (patch)
treec1f3c74f679ede5e0c2a7428f81e471e08ef34f7 /includes/unicode.inc
parent1d9b81d3b8fbac5bde2e5f162a2b886ec58b8a87 (diff)
downloadbrdo-c5eeccb43d415bc92947aada453dd1dd2ee411a4.tar.gz
brdo-c5eeccb43d415bc92947aada453dd1dd2ee411a4.tar.bz2
Code style
Diffstat (limited to 'includes/unicode.inc')
-rw-r--r--includes/unicode.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/unicode.inc b/includes/unicode.inc
index 7aa0b942a..54fe7bb8b 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 <a href="%url">PHP mbstring extension</a> for improved Unicode support.', array('%url' => 'http://www.php.net/mbstring')),
UNICODE_MULTIBYTE => t('Multi-byte: operations on Unicode strings are supported through the <a href="%url">PHP mbstring extension</a>.', 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;
}