Merge branch 'dev' of codeberg.org:streams/streams into dev

This commit is contained in:
Mike Macgirvin 2024-03-11 15:52:32 +11:00
commit 9f29173d2f
2 changed files with 3 additions and 3 deletions

View file

@ -1002,13 +1002,13 @@ class Item extends Controller
}
$summary = wrap_code($summary);
$summary = cleanup_bbcode($summary);
$summary_tags = linkify_tags($summary, ($uid) ? $uid : $profile_uid);
$summary = cleanup_bbcode($summary);
$summary = unwrap_code($summary);
$body = wrap_code($body);
$body = cleanup_bbcode($body);
$body_tags = linkify_tags($body, ($uid) ? $uid : $profile_uid);
$body = cleanup_bbcode($body);
$body = unwrap_code($body);

View file

@ -1,2 +1,2 @@
<?php
define ('STD_VERSION', '24.03.08');
define ('STD_VERSION', '24.03.11');