aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-07-12 23:14:38 -0700
committerFriendika <info@friendika.com>2011-07-12 23:14:38 -0700
commit74a608e1c77ab1d378ed6f09c8d70df3ea61cbca (patch)
tree33739a813e4ea5a8fb511a2514ff73ac2ddd3603 /boot.php
parent706b6e8c84be332ff8310fffe13c83e784e46904 (diff)
downloadvolse-hubzilla-74a608e1c77ab1d378ed6f09c8d70df3ea61cbca.tar.gz
volse-hubzilla-74a608e1c77ab1d378ed6f09c8d70df3ea61cbca.tar.bz2
volse-hubzilla-74a608e1c77ab1d378ed6f09c8d70df3ea61cbca.zip
openid settings appearing when disabled, don't tag numbers, install admin not getting set
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 88d72dec3..5f0898a53 100644
--- a/boot.php
+++ b/boot.php
@@ -4,7 +4,7 @@ set_time_limit(0);
ini_set('pcre.backtrack_limit', 250000);
-define ( 'FRIENDIKA_VERSION', '2.2.1038' );
+define ( 'FRIENDIKA_VERSION', '2.2.1039' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
define ( 'DB_UPDATE_VERSION', 1075 );
@@ -2058,6 +2058,9 @@ function get_tags($s) {
// we might be inside a bbcode color tag - leave it alone
continue;
}
+ // ignore strictly numeric tags like #1
+ if((strpos($mtch,'#') === 0) && ctype_digit(substr($mtch,1)))
+ continue;
if(substr($mtch,-1,1) === '.')
$ret[] = substr($mtch,0,-1);
else