summaryrefslogtreecommitdiff
path: root/modules/book.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-07-25 20:40:35 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-07-25 20:40:35 +0000
commit11a4aba9a63c82b0bb7805b50b8a761cc5a9c493 (patch)
tree92719121fa484fd1efc4160909f67195766c389a /modules/book.module
parentdd2c5765999125bf37dd25b4e0a88cce77043a55 (diff)
downloadbrdo-11a4aba9a63c82b0bb7805b50b8a761cc5a9c493.tar.gz
brdo-11a4aba9a63c82b0bb7805b50b8a761cc5a9c493.tar.bz2
- #26688: Add mbstring support to Drupal and clear up string handling fuzzies.
Diffstat (limited to 'modules/book.module')
-rw-r--r--modules/book.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/book.module b/modules/book.module
index a515fa0e7..cbe8f1635 100644
--- a/modules/book.module
+++ b/modules/book.module
@@ -662,7 +662,7 @@ function book_render() {
*/
function book_export($type = 'html', $nid = 0) {
global $base_url;
- $type = strtolower($type);
+ $type = drupal_strtolower($type);
$depth = _book_get_depth($nid);
switch ($type) {
case 'docbook':