diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-08-18 18:34:23 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-08-18 18:34:23 +0000 |
commit | e2f42cf3d544bc90accaab9eff800277ac60c9f1 (patch) | |
tree | 32333acc95271edcfdf2cdd0bc501a523cf0c735 | |
parent | 74da133ca14b3900d259c3fe2ec3dde17fb9e7df (diff) | |
download | brdo-e2f42cf3d544bc90accaab9eff800277ac60c9f1.tar.gz brdo-e2f42cf3d544bc90accaab9eff800277ac60c9f1.tar.bz2 |
- Fixing t() patch mess up
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/common.inc b/includes/common.inc index 3cd1a3feb..957680056 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -618,6 +618,8 @@ function _t(&$value, $key) { default: $value = theme('placeholder', $value); return; + // Pass-through + case '!': } } |