From 6f8cfeb156bb6c747396d9776031340d0dd1cb4e Mon Sep 17 00:00:00 2001 From: nobody Date: Sun, 7 Feb 2021 16:24:41 -0800 Subject: [PATCH] more unescaped quotes issues --- boot.php | 2 +- include/text.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index 76b099840..50412b040 100755 --- a/boot.php +++ b/boot.php @@ -16,7 +16,7 @@ use Zotlabs\Daemon\Run; * @brief This file defines some global constants and includes the central App class. */ -define ( 'STD_VERSION', '21.02.05' ); +define ( 'STD_VERSION', '21.02.08' ); define ( 'ZOT_REVISION', '6.0' ); define ( 'DB_UPDATE_VERSION', 1247 ); diff --git a/include/text.php b/include/text.php index 470fe4588..2aafd1507 100644 --- a/include/text.php +++ b/include/text.php @@ -911,7 +911,7 @@ function get_tags($s) { if((strpos($mtch,'#') === 0) && ( ctype_digit(substr($mtch,1)) || in_array(substr($mtch,1,1), [ '^', '#' ]))) continue; // or quote remnants from the quoted strings we already picked out earlier - if(strpos($mtch,'"')) + if((strpos($mtch,'"')) || strpos($mtch,"\"")) continue; $ret[] = $mtch;