Merge branch 'dev' of /home/macgirvin/z into dev

This commit is contained in:
nobody 2021-02-07 16:29:26 -08:00
commit b941f2ef02
2 changed files with 2 additions and 2 deletions

View file

@ -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 );

View file

@ -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,'&quot'))
if((strpos($mtch,'&quot')) || strpos($mtch,"\""))
continue;
$ret[] = $mtch;