diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2005-11-30 12:09:22 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2005-11-30 12:09:22 +0100 |
| commit | 8fd0c7173c2b984d0b4916e299d856647a4e389a (patch) | |
| tree | b6eedd7cee5f9dded4293f689cf2b127319a0517 /backend.php | |
| parent | 6be6bc03937f55b6bceae90c19cf83e631aed31b (diff) | |
headline: change cutoff length for content preview
Diffstat (limited to 'backend.php')
| -rw-r--r-- | backend.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backend.php b/backend.php index 788343e22..3fa36d5c1 100644 --- a/backend.php +++ b/backend.php @@ -1150,7 +1150,8 @@ } if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) { - $content_preview = truncate_string(strip_tags($line["content_preview"]), 101); + $content_preview = truncate_string(strip_tags($line["content_preview"]), + 60); } if ($omode != "xml") { |