openid settings appearing when disabled, don't tag numbers, install admin not getting set
This commit is contained in:
parent
706b6e8c84
commit
74a608e1c7
5 changed files with 9 additions and 4 deletions
5
boot.php
5
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue