Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
_drush_tools_watchdog_format_message($message, $length = 56)
contributions/drush/drush_tools/drush_tools.module, line 132
<?php
function _drush_tools_watchdog_format_message($message, $length = 56) {
return strip_tags(
preg_replace('|<em>([^<]+)</em>|', '`$1\'',
truncate_utf8($message, $length, TRUE, TRUE)));
}
?>