aboutsummaryrefslogtreecommitdiffstats
path: root/include/identity.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-02-07 18:11:10 -0800
committerredmatrix <git@macgirvin.com>2016-02-07 18:11:10 -0800
commitd8e6fd5df0713ef4f52277944d15fd8230deec81 (patch)
treead5cb27b976ab3670b86cfb2ddfface8f47cf559 /include/identity.php
parentec950de2054243f22e7d6b30e4d7b9b41f293d4e (diff)
downloadvolse-hubzilla-d8e6fd5df0713ef4f52277944d15fd8230deec81.tar.gz
volse-hubzilla-d8e6fd5df0713ef4f52277944d15fd8230deec81.tar.bz2
volse-hubzilla-d8e6fd5df0713ef4f52277944d15fd8230deec81.zip
provide get_server_role() to abstract different roles and capabilities
Diffstat (limited to 'include/identity.php')
-rw-r--r--include/identity.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/identity.php b/include/identity.php
index 0b9842caf..641f188f4 100644
--- a/include/identity.php
+++ b/include/identity.php
@@ -484,7 +484,7 @@ function identity_basic_export($channel_id, $items = false) {
// use constants here as otherwise we will have no idea if we can import from a site
// with a non-standard platform and version.
- $ret['compatibility'] = array('project' => PLATFORM_NAME, 'version' => RED_VERSION, 'database' => DB_UPDATE_VERSION, 'server_role' => UNO );
+ $ret['compatibility'] = array('project' => PLATFORM_NAME, 'version' => RED_VERSION, 'database' => DB_UPDATE_VERSION, 'server_role' => get_server_role());
$r = q("select * from channel where channel_id = %d limit 1",
intval($channel_id)