diff options
author | Michael Vogel <icarus@dabo.de> | 2012-05-16 08:24:46 +0200 |
---|---|---|
committer | Michael Vogel <icarus@dabo.de> | 2012-05-16 08:24:46 +0200 |
commit | f2c0c40f6e488f1a8e62bda9449b28115f343cac (patch) | |
tree | ae1418141f85be49b7d8cb3d2a0e8b2a7acc4eb4 /boot.php | |
parent | f2e648d62fe7cafb9a55c7505687ea4d1c294778 (diff) | |
parent | a65bd73bf3f4a1e6ccfcdf0a06c70a4f1f4182ce (diff) | |
download | volse-hubzilla-f2c0c40f6e488f1a8e62bda9449b28115f343cac.tar.gz volse-hubzilla-f2c0c40f6e488f1a8e62bda9449b28115f343cac.tar.bz2 volse-hubzilla-f2c0c40f6e488f1a8e62bda9449b28115f343cac.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -9,7 +9,7 @@ require_once('include/nav.php'); require_once('include/cache.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '2.3.1336' ); +define ( 'FRIENDICA_VERSION', '3.0.1343' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1143 ); @@ -123,6 +123,8 @@ define ( 'NETWORK_XMPP', 'xmpp'); // XMPP define ( 'NETWORK_MYSPACE', 'mysp'); // MySpace define ( 'NETWORK_GPLUS', 'goog'); // Google+ +define ( 'NETWORK_PHANTOM', 'unkn'); // Place holder + /** * These numbers are used in stored permissions * and existing allocations MUST NEVER BE CHANGED @@ -142,6 +144,8 @@ $netgroup_ids = array( NETWORK_XMPP => (-10), NETWORK_MYSPACE => (-11), NETWORK_GPLUS => (-12), + + NETWORK_PHANTOM => (-127), ); |