mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
mbstring is now required
This commit is contained in:
parent
e591ed6b30
commit
05e06889b3
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ exchange conversations
|
|||
encryption support
|
||||
- PHP *command line* access with register_argc_argv set to true in the
|
||||
php.ini file
|
||||
- curl, gd, mysql, and openssl extensions
|
||||
- curl, gd, mysql, mbstring, and openssl extensions
|
||||
- some form of email server or email gateway such that PHP mail() works
|
||||
- mcrypt (optional; used for end-to-end message encryption)
|
||||
|
||||
|
|
2
boot.php
2
boot.php
|
@ -4,7 +4,7 @@ set_time_limit(0);
|
|||
ini_set('pcre.backtrack_limit', 250000);
|
||||
|
||||
|
||||
define ( 'FRIENDIKA_VERSION', '2.2.999' );
|
||||
define ( 'FRIENDIKA_VERSION', '2.2.1001' );
|
||||
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
||||
define ( 'DB_UPDATE_VERSION', 1060 );
|
||||
|
||||
|
|
Loading…
Reference in a new issue