diff options
-rw-r--r-- | modules/node/node.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index ef798cf0a..77c2c875e 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -328,7 +328,7 @@ function node_teaser($body, $format = NULL, $size = NULL) { } // If we have a short body, the entire body is the teaser. - if (strlen($body) <= $size) { + if (drupal_strlen($body) <= $size) { return $body; } |