]> git.mxchange.org Git - friendica.git/blobdiff - boot.php
Merge remote-tracking branch 'friendika/master'
[friendica.git] / boot.php
index 4c8c1c4d2fdc2221ade42939f2ba1a5ae07d98f4..956cb2ca64cfb31496d07421ef8ec9417b1641da 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -1,6 +1,6 @@
 <?php
 
-define ( 'FRIENDIKA_VERSION',      '2.2.1053' );
+define ( 'FRIENDIKA_VERSION',      '2.2.1055' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.21'    );
 define ( 'DB_UPDATE_VERSION',      1076      );
 
@@ -2075,7 +2075,7 @@ function get_tags($s) {
                                continue;
                        }
                        // ignore strictly numeric tags like #1
-                       if((strpos($mtch,'#') === 0) && ctype_digit($mtch))
+                       if((strpos($mtch,'#') === 0) && ctype_digit(substr($mtch,1)))
                                continue;
                        if(substr($mtch,-1,1) === '.')
                                $ret[] = substr($mtch,0,-1);